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


PHP Configuration::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($id = null, $id_lang = null)
 {
     // Check if the id configuration is set in the configuration_lang table.
     // Otherwise configuration is not set as translated configuration.
     if ($id !== null) {
         $id_translated = Db::getInstance()->ExecuteS('SELECT `' . $this->identifier . '` FROM `' . pSQL(_DB_PREFIX_ . $this->table) . '_lang` WHERE `' . $this->identifier . '`=' . pSQL($id) . ' LIMIT 0,1');
         if (empty($id_translated)) {
             $id = null;
         }
     }
     parent::__construct($id, $id_lang);
 }
开发者ID:Evil1991,项目名称:PrestaShop-1.4,代码行数:12,代码来源:TranslatedConfiguration.php

示例2: __construct

    public function __construct($id = NULL, $id_lang = NULL)
    {
        $this->def = ObjectModel::getDefinition($this);
        // Check if the id configuration is set in the configuration_lang table.
        // Otherwise configuration is not set as translated configuration.
        if ($id !== null) {
            $id_translated = Db::getInstance()->executeS('				SELECT `' . bqSQL($this->def['primary']) . '`
				FROM `' . bqSQL(_DB_PREFIX_ . $this->def['table']) . '_lang`
				WHERE `' . bqSQL($this->def['primary']) . '`=' . (int) $id . ' LIMIT 0,1
			');
            if (empty($id_translated)) {
                $id = null;
            }
        }
        parent::__construct($id, $id_lang);
    }
开发者ID:ramzzes52,项目名称:Uni3,代码行数:16,代码来源:TranslatedConfiguration.php

示例3: __construct

 public function __construct($ibssoToken, $baseUrl = null)
 {
     parent::__construct($baseUrl);
     $this->ibssoToken = $ibssoToken;
 }
开发者ID:kjmtrue,项目名称:infobip-api-php-client,代码行数:5,代码来源:IbssoAuthConfiguration.php

示例4: __construct

 /**
  * Build a configuration instance
  * @param array $data
  */
 public function __construct(array $data = [])
 {
     parent::__construct(array_merge(self::DEFAULTS, $data));
 }
开发者ID:bee4,项目名称:transport,代码行数:8,代码来源:SshConfiguration.php

示例5: Sedici_config

 public function Sedici_config($conf)
 {
     parent::__construct($conf);
 }
开发者ID:sedici,项目名称:wp-dspace,代码行数:4,代码来源:Sedici_config.php

示例6: __construct

 public function __construct($apiKey, $baseUrl = null)
 {
     parent::__construct($baseUrl);
     $this->apiKey = $apiKey;
 }
开发者ID:kjmtrue,项目名称:infobip-api-php-client,代码行数:5,代码来源:ApiKeyAuthConfiguration.php

示例7: __construct

 public function __construct($username, $password, $baseUrl = null)
 {
     parent::__construct($baseUrl);
     $this->username = $username;
     $this->password = $password;
 }
开发者ID:kjmtrue,项目名称:infobip-api-php-client,代码行数:6,代码来源:BasicAuthConfiguration.php

示例8: Cic_config

 public function Cic_config($conf)
 {
     parent::__construct($conf);
 }
开发者ID:sedici,项目名称:wp-dspace,代码行数:4,代码来源:Cic_config.php


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