当前位置: 首页>>代码示例>>PHP>>正文


PHP JPagination::__construct方法代码示例

本文整理汇总了PHP中JPagination::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP JPagination::__construct方法的具体用法?PHP JPagination::__construct怎么用?PHP JPagination::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JPagination的用法示例。


在下文中一共展示了JPagination::__construct方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 function __construct(XiptModel &$model)
 {
     $limit = null;
     $limitstart = null;
     $this->initDefaultStates($model, $limit, $limitstart);
     return parent::__construct($model->getTotal(), $limitstart, $limit);
 }
开发者ID:Simarpreet05,项目名称:joomla,代码行数:7,代码来源:pagination.php

示例2:

 function __construct($total, $limitstart, $limit, $perRow = 5)
 {
     if ($perRow !== 0) {
         $this->_perRow = $perRow;
     }
     parent::__construct($total, $limitstart, $limit);
 }
开发者ID:denis1001,项目名称:Virtuemart-2-Joomla-3-Bootstrap,代码行数:7,代码来源:vmpagination.php

示例3:

 function __construct($total, $limitstart, $limit)
 {
     global $mainframe;
     if ($limit == "") {
         $limit = $mainframe->getUserStateFromRequest('global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int');
     }
     parent::__construct($total, $limitstart, $limit);
 }
开发者ID:reeleis,项目名称:ohiocitycycles,代码行数:8,代码来源:dtpagination.php

示例4: __construct

 public function __construct($total, $limitstart, $limit, $perRow = 5)
 {
     if ((int) $perRow > 1) {
         $this->_perRow = $perRow;
     }
     parent::__construct($total, $limitstart, $limit);
     // studio42 fix for limit=int
     $this->setAdditionalUrlParam('limit', $limit);
 }
开发者ID:denis1001,项目名称:Virtuemart-2-Joomla-3-Bootstrap,代码行数:9,代码来源:vmpagination.php

示例5: intval

	function __construct($total, $limitstart, $limit, $prefix = '') {
		// If out of range, use last page
		if ($total < (int) $limitstart)
			$limitstart = intval($total / $limit) * $limit;

		parent::__construct($total, $limitstart, $limit, $prefix);
		$this->setDisplay();
		if ($limitstart === false) $this->set('pages.current', -1);
		$this->template = KunenaFactory::getTemplate();
	}
开发者ID:rich20,项目名称:Kunena,代码行数:10,代码来源:pagination.php

示例6: __construct

 /**
  * Constructor
  *
  * @param   int     $total      The total number of items
  * @param   int     $limitstart The offset of the item to start at
  * @param   int     $limit      The number of items to display per page
  * @param   string  $prefix     The prefix used for request variables
  * @param   string  $anchortag  The anchor to use for the URLs
  * @param   string  $onclick    The contents of an optional 'onlick' attribute
  * @return  void
  * @since   2.0
  */
 public function __construct($total, $limitstart, $limit, $prefix = '', $anchortag = 'category', $onclick = null)
 {
     parent::__construct($total, $limitstart, $limit, $prefix);
     $this->anchortag = '';
     if ($anchortag) {
         $this->anchortag = JHtml::_('joomgallery.anchor', $anchortag);
     }
     if ($onclick) {
         $this->onclick = '" onclick="' . $onclick;
     }
 }
开发者ID:pabloarias,项目名称:JoomGallery,代码行数:23,代码来源:pagination.php

示例7: JRegistry

 function __construct($total, $limitstart, $limit, $perRow = 3)
 {
     if ($perRow !== 0) {
         $this->_perRow = $perRow;
     }
     $this->prefix = 'com_customfilters';
     parent::__construct($total, $limitstart, $limit);
     //ItemId
     $module = JModuleHelper::getModule('mod_cf_filtering');
     $params = new JRegistry();
     $params->loadString($module->params);
     $itemId = $params->get('cf_itemid', '');
     if (!empty($itemId)) {
         $this->setAdditionalUrlParam('Itemid', $itemId);
     }
 }
开发者ID:alesconti,项目名称:FF_2015,代码行数:16,代码来源:cfpagination.php

示例8: __construct

 public function __construct($total, $limitstart, $limit, $prefix = '')
 {
     parent::__construct($total, $limitstart, $limit, $prefix);
 }
开发者ID:BetterBetterBetter,项目名称:B3App,代码行数:4,代码来源:pagination.php

示例9:

 function __construct($total, $limitstart, $limit, $url = "")
 {
     //echo $url;
     parent::__construct($total, $limitstart, $limit);
     $this->url = $url;
 }
开发者ID:politik86,项目名称:test2,代码行数:6,代码来源:pagination.php

示例10: mosPageNav

		function mosPageNav( $total, $limitstart, $limit ) {
			parent::__construct($total, $limitstart, $limit);
		}
开发者ID:kosmosby,项目名称:medicine-prof,代码行数:3,代码来源:uddeimlib15.php

示例11:

 function __construct($total, $limitstart, $limit)
 {
     if ($limit == 0 || $limit > 100) {
         $limit = 100;
     }
     parent::__construct($total, $limitstart, $limit);
 }
开发者ID:janssit,项目名称:www.ondernemenddiest.be,代码行数:7,代码来源:DOCMAN_compat.class.php

示例12:

 function __construct($total, $limitstart, $limit)
 {
     $this->skinstyle = FST_Settings::get('skin_style');
     parent::__construct($total, $limitstart, $limit);
 }
开发者ID:AxelFG,项目名称:ckbran-inf,代码行数:5,代码来源:paginationex.php

示例13: __construct

 public function __construct($total, $limitstart, $limit)
 {
     if ($limitstart > $total) {
         $limitstart = 0;
     }
     parent::__construct($total, $limitstart, $limit);
 }
开发者ID:Ibrahim1,项目名称:aec,代码行数:7,代码来源:admin.acctexp.html.php


注:本文中的JPagination::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。