API15:JPagination/orderDownIcon
From Joomla! Documentation
Description
Return the icon to move an item DOWN
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
orderDownIcon($i, $n, $condition=true, $task= 'orderdown', $alt= 'Move Down', $enabled=true)
Parameter Name | Default Value | Description |
---|---|---|
$i | $i The row index | |
$n | $n The number of items in the list | |
$condition | true | $condition True to show the icon |
$task | 'orderdown' | $task The task to fire |
$alt | 'Move Down' | $alt The image alternate text string |
$enabled | true |
Returns
string Either the icon to move an item down or a space
Defined in
libraries/joomla/html/pagination.php
Importing
jimport( 'joomla.html.pagination' );
Source Body
function orderDownIcon($i, $n, $condition = true, $task = 'orderdown', $alt = 'Move Down', $enabled = true)
{
$alt = JText::_($alt);
$html = ' ';
if (($i < $n -1 || $i + $this->limitstart < $this->total - 1) && $condition)
{
if($enabled) {
$html = '<a href="#reorder" onclick="return listItemTask(\'cb'.$i.'\',\''.$task.'\')" title="'.$alt.'">';
$html .= ' <img src="images/downarrow.png" width="16" height="16" border="0" alt="'.$alt.'" />';
$html .= '</a>';
} else {
$html = '<img src="images/downarrow0.png" width="16" height="16" border="0" alt="'.$alt.'" />';
}
}
return $html;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples