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


PHP cms_module_common_selector::__construct方法代码示例

本文整理汇总了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();
     }
 }
开发者ID:noble82,项目名称:proyectos-ULS,代码行数:7,代码来源:cms_module_common_selector_bannette.class.php

示例2: __construct

 public function __construct($id = 0)
 {
     parent::__construct($id);
     if (!is_array($this->parameters)) {
         $this->parameters = array();
     }
     $this->once_sub_selector = true;
 }
开发者ID:hogsim,项目名称:PMB,代码行数:8,代码来源:cms_module_common_selector_bannette_generic.class.php

示例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;
     }
 }
开发者ID:noble82,项目名称:proyectos-ULS,代码行数:11,代码来源:cms_module_common_selector_page.class.php

示例4: __construct

 public function __construct($id = 0)
 {
     parent::__construct($id);
 }
开发者ID:noble82,项目名称:proyectos-ULS,代码行数:4,代码来源:cms_module_opacitem_selector_opacitem.class.php

示例5: __construct

 public function __construct($id = 0)
 {
     parent::__construct($id);
     $this->once_sub_selector = true;
 }
开发者ID:bouchra012,项目名称:PMB,代码行数:5,代码来源:cms_module_common_selector_generic_section.class.php

示例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");
 }
开发者ID:bouchra012,项目名称:PMB,代码行数:5,代码来源:cms_module_common_selector_lvl.class.php


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