API15:JPagination/orderUpIcon
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 icon to move an item UP
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
orderUpIcon($i, $condition=true, $task= 'orderup', $alt= 'Move Up', $enabled=true)
| Parameter Name | Default Value | Description |
|---|---|---|
| $i | $i The row index | |
| $condition | true | $condition True to show the icon |
| $task | 'orderup' | $task The task to fire |
| $alt | 'Move Up' | $alt The image alternate text string |
| $enabled | true |
Returns
string Either the icon to move an item up or a space
Defined in
libraries/joomla/html/pagination.php
Importing
jimport( 'joomla.html.pagination' );
Source Body
function orderUpIcon($i, $condition = true, $task = 'orderup', $alt = 'Move Up', $enabled = true) { $alt = JText::_($alt); $html = ' '; if (($i > 0 || ($i + $this->limitstart > 0)) && $condition) { if($enabled) { $html = '<a href="#reorder" onclick="return listItemTask(\'cb'.$i.'\',\''.$task.'\')" title="'.$alt.'">'; $html .= ' <img src="images/uparrow.png" width="16" height="16" border="0" alt="'.$alt.'" />'; $html .= '</a>'; } else { $html = '<img src="images/uparrow0.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
<CodeExamplesForm />
