API16:JHtmlJGrid/checkedout
From Joomla! Documentation
Description
Displays a checked-out icon
<! removed transcluded page call, red link never existed >
Syntax
static checkedout($editorName, $time)
| Parameter Name | Default Value | Description |
|---|---|---|
| $editorName | The name of the editor. | |
| $time | The time that the object was checked out. |
Returns
string The required HTML.
Defined in
libraries/joomla/html/html/jgrid.php
Importing
jimport( 'joomla.html.html.jgrid' );
Source Body
public static function checkedout($editorName, $time)
{
$text = addslashes(htmlspecialchars($editorName, ENT_COMPAT, 'UTF-8'));
$date = JHTML::_('date',$time, '%A, %d %B %Y');
$time = JHTML::_('date',$time, '%H:%M');
$hover = '<span class="editlinktip hasTip" title="'. JText::_('CHECKED_OUT') .'::'. $text .'<br />'. $date .'<br />'. $time .'">';
$checked = $hover .JHTML::_('image','admin/checked_out.png', JText::_('CHECKED_OUT'), NULL, true).'</span>';
return $checked;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples