API16:JHtmlJGrid/orderDown
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
Create a move-down action icon.
Description:JHtmlJGrid/orderDown
Syntax
static orderDown($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 orderDown($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/downarrow.png', $alt, array( 'width' => 16, 'height' => 16, 'border' => 0), true); $html .= '</a>'; } else { $html = JHTML::_('image','admin/downarrow0.png', $alt, array( 'width' => 16, 'height' => 16, 'border' => 0), true); } return $html; }
[Edit See Also] SeeAlso:JHtmlJGrid/orderDown
Examples
<CodeExamplesForm />
