JHTMLGrid/order: Difference between revisions
From Joomla! Documentation
New page:
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JHTMLGrid/order}}
===... |
m →Examples: adding categories |
||
| Line 59: | Line 59: | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
[[Category:Archived pages API15]][[Category:Security mod error page]] | |||
Revision as of 01:49, 13 May 2013
Template:Description:JHTMLGrid/order
Syntax
order($rows, $image='filesave.png', $task="saveorder")
| Parameter Name | Default Value | Description |
|---|---|---|
| $rows | ||
| $image | 'filesave.png' | |
| $task | "saveorder" |
Defined in
libraries/joomla/html/html/grid.php
Importing
jimport( 'joomla.html.html.grid' );
Source Body
function order( $rows, $image='filesave.png', $task="saveorder" )
{
$image = JHTML::_('image.administrator', $image, '/images/', NULL, NULL, JText::_( 'Save Order' ) );
$href = '<a href="javascript:saveorder('.(count( $rows )-1).', \''.$task.'\')" title="'.JText::_( 'Save Order' ).'">'.$image.'</a>';
return $href;
}
[Edit See Also] Template:SeeAlso:JHTMLGrid/order
Examples
<CodeExamplesForm />