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