本文整理匯總了PHP中Paginator::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Paginator::__construct方法的具體用法?PHP Paginator::__construct怎麽用?PHP Paginator::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Paginator
的用法示例。
在下文中一共展示了Paginator::__construct方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
/**
* Constructor
*
* Sets up the paginator
*
* @param string $pagername unique name for the pager e.g. 'users-list'
*/
function __construct($pagername = false)
{
$this->set_name($pagername);
$this->set_id($this->get_name() . '_pager');
// defaults
$this->suppress_sort = FALSE;
$this->do_not_allow_sort_on_these_columns = array();
parent::__construct();
global $wpdb;
$this->wpdb =& $wpdb;
// $this->custom_html_rows = FALSE;
// $this->filter->fields = array();
}
示例2: __construct
public function __construct($page = 1, $nbByPage = 25, array $elements = array())
{
parent::__construct($page, $nbByPage, $elements);
$this->rootOperation = new ListOperation($this->mainOperator);
}
示例3: __construct
public function __construct($page, $perPage)
{
parent::__construct($page, $perPage);
}