public
orderUpIcon
(mixed $i, mixed $condition = true, mixed $task = '#', mixed $alt = 'COM_PHOCAGALLERY_MOVE_UP', mixed $enabled = true, mixed $checkbox = 'cb')
public function orderUpIcon($i, $condition = true, $task = '#', $alt = 'COM_PHOCAGALLERY_MOVE_UP', $enabled = true, $checkbox = 'cb')
{
$alt = Text::_($alt);
$html = ' ';
if (($i > 0 || $i + $this->limitstart > 0) && $condition) {
if ($enabled) {
$html = '<a href="' . $task . '" title="' . $alt . '">';
$html .= ' <img src="' . Uri::base(true) . '/media/com_phocagallery/images/icon-uparrow.png" width="16" height="16" border="0" alt="' . $alt . '" />';
$html .= '</a>';
} else {
$html = '<img src="' . Uri::base(true) . '/media/com_phocagallery/images/icon-uparrow0.png" width="16" height="16" border="0" alt="' . $alt . '" />';
}
}
return $html;
}