getLimitBox();
*
* @deprecated as of 1.5
*/
function writeLimitBox($link = null) {
echo $this->getLimitBox();
}
/**
* Writes the counter string
* Use: print $pagination->getLimitBox();
*
* @deprecated as of 1.5
*/
function writePagesCounter() {
return $this->getPagesCounter();
}
/**
* Writes the page list string
* Use: print $pagination->getPagesLinks();
*
* @deprecated as of 1.5
*/
function writePagesLinks($link = null) {
return $this->getPagesLinks();
}
/**
* Writes the html for the leafs counter, eg, Page 1 of x
* Use: print $pagination->getPagesCounter();
*
* @deprecated as of 1.5
*/
function writeLeafsCounter() {
return $this->getPagesCounter();
}
/**
* Returns the pagination offset at an index
* Use: $pagination->getRowOffset($index); instead
*
* @deprecated as of 1.5
*/
function rowNumber($index) {
return $index +1 + $this->limitstart;
}
/**
* Return the icon to move an item UP
*
* @deprecated as of 1.5
*/
function orderUpIcon2($id, $order, $condition = true, $task = 'orderup', $alt = '#')
{
// handling of default value
if ($alt = '#') {
$alt = JText::_('Move Up');
}
if ($order == 0) {
$img = 'uparrow0.png';
} else {
if ($order < 0) {
$img = 'uparrow-1.png';
} else {
$img = 'uparrow.png';
}
}
$output = '';
$output .= '
';
return $output;
}
/**
* Return the icon to move an item DOWN
*
* @deprecated as of 1.5
*/
function orderDownIcon2($id, $order, $condition = true, $task = 'orderdown', $alt = '#')
{
// handling of default value
if ($alt = '#') {
$alt = JText::_('Move Down');
}
if ($order == 0) {
$img = 'downarrow0.png';
} else {
if ($order < 0) {
$img = 'downarrow-1.png';
} else {
$img = 'downarrow.png';
}
}
$output = '';
$output .= '
';
return $output;
}
}
?>