API15:JPagination/getData
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Return the pagination data object, only creating it if it doesn't already exist
Description:JPagination/getData
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; }
[Edit See Also] SeeAlso:JPagination/getData
Examples
<CodeExamplesForm />
