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


PHP Category::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Construct.
  *
  * @param array $options Class instances.
  */
 public function __construct(array $options = [])
 {
     parent::__construct($options);
     $this->categorizeForeign = $this->pdo->getSetting('categorizeforeign') == "0" ? false : true;
     $this->catWebDL = $this->pdo->getSetting('catwebdl') == "0" ? false : true;
     $this->regexes = new Regexes(['Settings' => $this->pdo, 'Table_Name' => 'category_regexes']);
 }
开发者ID:zetas,项目名称:nZEDb,代码行数:12,代码来源:Categorize.php

示例2:

 function __construct($id, $cat_vin)
 {
     parent::__construct($id);
     $this->type = 'sous-region';
     $this->data = "id_sous_region={$id}";
     $this->category = $cat_vin;
     $this->set_label();
 }
开发者ID:Razinsky,项目名称:echaude-com,代码行数:8,代码来源:class.SousRegion.php

示例3:

 function __construct($data)
 {
     parent::__construct($data['id']);
     $this->id = $data['id'];
     $this->data = $data['id'];
     $this->label = $data['label'];
     $this->type = $data['type'];
 }
开发者ID:Razinsky,项目名称:echaude-com,代码行数:8,代码来源:class.VinsAuVerre.php

示例4: _construct

 public function _construct()
 {
     parent::__construct();
 }
开发者ID:Alver23,项目名称:FormGenerator,代码行数:4,代码来源:categoryModel.php

示例5: __construct

 /**
  * Group does not need Sluggable behavior
  * @param int $id
  * @param string  $table
  * @param string  $ds
  */
 public function __construct($id = false, $table = null, $ds = null)
 {
     parent::__construct($id, $table, $ds);
     $this->Behaviors->unload('Utils.Sluggable');
 }
开发者ID:wangshipeng,项目名称:license,代码行数:11,代码来源:Group.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->output->set_header('Content-Type: application/json; charset=utf-8');
 }
开发者ID:ishawge,项目名称:n5admin,代码行数:5,代码来源:apiCategory.php

示例7:

 /**
  * Set data related to t_category table
  */
 function __construct()
 {
     parent::__construct(RESTDAO_DEF_LANGUAGE);
 }
开发者ID:faosclass,项目名称:aRestAPI4Osclass,代码行数:7,代码来源:RestDAO.php

示例8: __construct

 /**
  * Construct.
  *
  * @param array $options Class instances.
  */
 public function __construct(array $options = array())
 {
     parent::__construct($options);
     $this->categorizeForeign = $this->pdo->getSetting('categorizeforeign') == "0" ? false : true;
     $this->catWebDL = $this->pdo->getSetting('catwebdl') == "0" ? false : true;
 }
开发者ID:Jay204,项目名称:nZEDb,代码行数:11,代码来源:Categorize.php


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