API16:JHtmlJGrid/orderUp
From Joomla! Documentation
Description
Create a order-up action icon.
<! removed transcluded page call, red link never existed >
Syntax
static orderUp($i, $task, $enabled=true, $alt= 'JGrid_Move_Up')
| Parameter Name | Default Value | Description |
|---|---|---|
| $i | The row index. | |
| $task | The task to fire. | |
| $enabled | true | True to show the icon. |
| $alt | 'JGrid_Move_Up' | The image alternate text string. |
Returns
string The HTML for the IMG tag.
Defined in
libraries/joomla/html/html/jgrid.php
Importing
jimport( 'joomla.html.html.jgrid' );
Source Body
public static function orderUp($i, $task, $enabled = true, $alt = 'JGrid_Move_Up')
{
$alt = JText::_($alt);
// TODO: Deal with hardcoded links.
if ($enabled)
{
$html = '<a href="#reorder" onclick="return listItemTask(\'cb'.$i.'\',\''.$task.'\')" title="'.$alt.'">';
$html .= JHTML::_('image','admin/uparrow.png', $alt, array( 'width' => 16, 'height' => 16, 'border' => 0), true);
$html .= '</a>';
}
else {
$html = JHTML::_('image','admin/uparrow0.png', $alt, array( 'width' => 16, 'height' => 16, 'border' => 0), true);
}
return $html;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples