API15:JPagination/getRowOffset
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 rationalised offset for a row with a given index.
Description:JPagination/getRowOffset
Syntax
getRowOffset($index)
| Parameter Name | Default Value | Description |
|---|---|---|
| $index | $index The row index |
Returns
int Rationalised offset for a row with a given index
Defined in
libraries/joomla/html/pagination.php
Importing
jimport( 'joomla.html.pagination' );
Source Body
function getRowOffset($index) { return $index +1 + $this->limitstart; }
[Edit See Also] SeeAlso:JPagination/getRowOffset
Examples
<CodeExamplesForm />
