API15:JPagination/getRowOffset
From Joomla! Documentation
Description
Return the rationalised offset for a row with a given index.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples