Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 247 → Rev 264

/trunk/bibliotheque/pear/Pager/Common.php
1180,7 → 1180,7
function getPerPageSelectBox($start=5, $end=30, $step=5, $showAllData=false, $extraParams=array())
{
require_once 'Pager/HtmlWidgets.php';
$widget =& new Pager_HtmlWidgets($this);
$widget = new Pager_HtmlWidgets($this);
return $widget->getPerPageSelectBox($start, $end, $step, $showAllData, $extraParams);
}
 
1204,7 → 1204,7
function getPageSelectBox($params = array(), $extraAttributes = '')
{
require_once 'Pager/HtmlWidgets.php';
$widget =& new Pager_HtmlWidgets($this);
$widget = new Pager_HtmlWidgets($this);
return $widget->getPageSelectBox($params, $extraAttributes);
}
 
/trunk/bibliotheque/pear/Pager/Sliding.php
63,7 → 63,7
* and their values
* @access public
*/
function Pager_Sliding($options = array())
function __construct($options = array())
{
//set default Pager_Sliding options
$this->_delta = 2;
143,7 → 143,7
* @return array back/pages/next/first/last/all links
* @access public
*/
function getLinks($pageID = null)
function getLinks($pageID = null, $next_html = '')
{
if ($pageID != null) {
$_sav = $this->_currentPage;