本文整理汇总了PHP中cms_module_common_selector::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP cms_module_common_selector::__construct方法的具体用法?PHP cms_module_common_selector::__construct怎么用?PHP cms_module_common_selector::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cms_module_common_selector
的用法示例。
在下文中一共展示了cms_module_common_selector::__construct方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($id = 0)
{
parent::__construct($id);
if (!is_array($this->parameters)) {
$this->parameters = array();
}
}
示例2: __construct
public function __construct($id = 0)
{
parent::__construct($id);
if (!is_array($this->parameters)) {
$this->parameters = array();
}
$this->once_sub_selector = true;
}
示例3: __construct
public function __construct($id = 0)
{
parent::__construct($id);
if (!is_array($this->parameters) && $this->parameters) {
$temp = array();
if ($this->parameters) {
$temp[0] = $this->parameters;
}
$this->parameters = $temp;
}
}
示例4: __construct
public function __construct($id = 0)
{
parent::__construct($id);
}
示例5: __construct
public function __construct($id = 0)
{
parent::__construct($id);
$this->once_sub_selector = true;
}
示例6: __construct
public function __construct($id = 0)
{
parent::__construct($id);
$this->lvl = array("author_see", "categ_see", "indexint_see", "coll_see", "more_results", "notice_display", "bulletin_display", "publisher_see", "titre_uniforme_see", "serie_see", "search_result", "subcoll_see", "search_history", "etagere_see", "etageres_see", "show_cart", "show_list", "section_see", "rss_see", "sort", "lastrecords", "infopages", "extend", "external_authorities", "perio_a2z_see", "cmspage", "index", "simple_search", "extended_search", "term_search", "tags_search", "search_perso", "external_search", "perio_a2z", "empr", "askmdp", "subscribe");
}