Subversion Repositories eFlore/Applications.coel-consultation

Rev

Rev 10 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 264
Line 31... Line 31...
31
 * @package    Pager
31
 * @package    Pager
32
 * @author     Lorenzo Alberton <l dot alberton at quipo dot it>
32
 * @author     Lorenzo Alberton <l dot alberton at quipo dot it>
33
 * @author     Richard Heyes <richard@phpguru.org>
33
 * @author     Richard Heyes <richard@phpguru.org>
34
 * @copyright  2003-2006 Lorenzo Alberton, Richard Heyes
34
 * @copyright  2003-2006 Lorenzo Alberton, Richard Heyes
35
 * @license    http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
35
 * @license    http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
36
 * @version    CVS: $Id: Common.php 10 2010-03-05 14:15:42Z jpm $
36
 * @version    CVS: $Id: Common.php 264 2016-12-19 13:27:31Z mathias $
37
 * @link       http://pear.php.net/package/Pager
37
 * @link       http://pear.php.net/package/Pager
38
 */
38
 */
Line 39... Line 39...
39
 
39
 
40
/**
40
/**
Line 1178... Line 1178...
1178
     * @access public
1178
     * @access public
1179
     */
1179
     */
1180
    function getPerPageSelectBox($start=5, $end=30, $step=5, $showAllData=false, $extraParams=array())
1180
    function getPerPageSelectBox($start=5, $end=30, $step=5, $showAllData=false, $extraParams=array())
1181
    {
1181
    {
1182
        require_once 'Pager/HtmlWidgets.php';
1182
        require_once 'Pager/HtmlWidgets.php';
1183
        $widget =& new Pager_HtmlWidgets($this);
1183
        $widget = new Pager_HtmlWidgets($this);
1184
        return $widget->getPerPageSelectBox($start, $end, $step, $showAllData, $extraParams);
1184
        return $widget->getPerPageSelectBox($start, $end, $step, $showAllData, $extraParams);
1185
    }
1185
    }
Line 1186... Line 1186...
1186
 
1186
 
1187
    // }}}
1187
    // }}}
Line 1202... Line 1202...
1202
     * @access public
1202
     * @access public
1203
     */
1203
     */
1204
    function getPageSelectBox($params = array(), $extraAttributes = '')
1204
    function getPageSelectBox($params = array(), $extraAttributes = '')
1205
    {
1205
    {
1206
        require_once 'Pager/HtmlWidgets.php';
1206
        require_once 'Pager/HtmlWidgets.php';
1207
        $widget =& new Pager_HtmlWidgets($this);
1207
        $widget = new Pager_HtmlWidgets($this);
1208
        return $widget->getPageSelectBox($params, $extraAttributes);
1208
        return $widget->getPageSelectBox($params, $extraAttributes);
1209
    }
1209
    }
Line 1210... Line 1210...
1210
 
1210
 
1211
    // }}}
1211
    // }}}