Se ti vuoi divertire il file di joomla da modificare è questo:
/libraries/joomla/html/pagination.php
linee da 316 in giù
function getLimitBox()
{
global $mainframe;
// Initialize variables
$limits = array ();
$limits[] = JHTML::_('select.option', '1');
$limits[] = JHTML::_('select.option', '2');
$limits[] = JHTML::_('select.option', '3');
// Make the option list
for ($i = 5; $i <= 30; $i += 5) {
$limits[] = JHTML::_('select.option', "$i");
}
$limits[] = JHTML::_('select.option', '50');
$limits[] = JHTML::_('select.option', '100');
$limits[] = JHTML::_('select.option', '0', JText::_('all'));
$selected = $this->_viewall ? 0 : $this->limit;
// Build the select list
if ($mainframe->isAdmin()) {
$html = JHTML::_('select.genericlist', $limits, 'limit', 'class="inputbox" size="1" onchange="submitform();"', 'value', 'text', $selected);
} else {
$html = JHTML::_('select.genericlist', $limits, 'limit', 'class="inputbox" size="1" onchange="this.form.submit()"', 'value', 'text', $selected);
}
return $html;
}
ho già inserito le modifiche per 1,2,3.
Se lo usi non dovresti mettere nulla in list limit, altrimenti parte con quello e dovrebbe iniziare dal primo della lista, cioè 1.