API15

API15:JPagination/getData

From Joomla! Documentation

Description

Return the pagination data object, only creating it if it doesn't already exist

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

getData()


Returns

object Pagination data object

Defined in

libraries/joomla/html/pagination.php

Importing

jimport( 'joomla.html.pagination' );

Source Body

function getData()
{
        static $data;
        if (!is_object($data)) {
                $data = $this->_buildDataObject();
        }
        return $data;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples