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


PHP Setting::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($positiveGeoTargetType = null, $negativeGeoTargetType = null, $SettingType = null)
 {
     parent::__construct();
     $this->positiveGeoTargetType = $positiveGeoTargetType;
     $this->negativeGeoTargetType = $negativeGeoTargetType;
     $this->SettingType = $SettingType;
 }
开发者ID:antonsmolin,项目名称:google-ads-api-namespaced,代码行数:7,代码来源:GeoTargetTypeSetting.php

示例2: __construct

 public function __construct($domainName = null, $languageCode = null, $SettingType = null)
 {
     parent::__construct();
     $this->domainName = $domainName;
     $this->languageCode = $languageCode;
     $this->SettingType = $SettingType;
 }
开发者ID:nediam,项目名称:adwords-lib,代码行数:7,代码来源:DynamicSearchAdsSetting.php

示例3: __construct

 public function __construct(Model_User $user)
 {
     parent::__construct($user);
     $view = new View_User_Settings_Profile();
     $view->avatars = $this->get_avatar_drivers();
     $this->add_content($view);
 }
开发者ID:modulargaming,项目名称:user,代码行数:7,代码来源:Profile.php

示例4: __construct

 /**
  * @param $path
  * @param $filename
  */
 public function __construct($app, $path = null)
 {
     parent::__construct($app);
     $this->fileSystem = $app['files'];
     $this->setPath($path ?: storage_path() . '/settings.json');
     $this->loadSettingsIfNotLoaded();
 }
开发者ID:amiyasahu,项目名称:laravel-settings,代码行数:11,代码来源:JsonSetting.php

示例5: __construct

 public function __construct(Model_User $user)
 {
     parent::__construct($user);
     $timezones = ORM::factory('User_Timezone')->find_all();
     $view = new View_User_Settings_Preferences();
     $view->timezones = $timezones->as_array();
     $this->add_content($view);
 }
开发者ID:modulargaming,项目名称:user,代码行数:8,代码来源:Preferences.php

示例6: __construct

 public function __construct($merchantId = null, $salesCountry = null, $campaignPriority = null, $SettingType = null)
 {
     parent::__construct();
     $this->merchantId = $merchantId;
     $this->salesCountry = $salesCountry;
     $this->campaignPriority = $campaignPriority;
     $this->SettingType = $SettingType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:8,代码来源:ShoppingSetting.php

示例7: __construct

 public function __construct($trackingUrl = null, $SettingType = null)
 {
     parent::__construct();
     $this->trackingUrl = $trackingUrl;
     $this->SettingType = $SettingType;
 }
开发者ID:trancerr,项目名称:apiadlib,代码行数:6,代码来源:CampaignService.php

示例8: __construct

 public function __construct($details = null, $SettingType = null)
 {
     parent::__construct();
     $this->details = $details;
     $this->SettingType = $SettingType;
 }
开发者ID:planetfitnessnational,项目名称:googleads-php-lib,代码行数:6,代码来源:AdGroupService.php

示例9: __construct

 public function __construct($optIn = null, $SettingType = null)
 {
     parent::__construct();
     $this->optIn = $optIn;
     $this->SettingType = $SettingType;
 }
开发者ID:randyibarrola,项目名称:active,代码行数:6,代码来源:MutateJobService.php

示例10: __construct

 public function __construct($optIn = NULL, $SettingType = NULL)
 {
     if (get_parent_class('RealTimeBiddingSetting')) {
         parent::__construct();
     }
     $this->optIn = $optIn;
     $this->SettingType = $SettingType;
 }
开发者ID:sambavade,项目名称:google-api-adwords-php,代码行数:8,代码来源:MutateJobService.php

示例11: __construct

 public function __construct(Model_User $user)
 {
     parent::__construct($user);
     $view = new View_User_Settings_Account();
     $this->add_content($view);
 }
开发者ID:modulargaming,项目名称:user,代码行数:6,代码来源:Account.php

示例12: __construct

 public function __construct($details = NULL, $SettingType = NULL)
 {
     if (get_parent_class('TargetingSetting')) {
         parent::__construct();
     }
     $this->details = $details;
     $this->SettingType = $SettingType;
 }
开发者ID:fertandil87,项目名称:adwords-php-client,代码行数:8,代码来源:AdGroupService.php

示例13: __construct

 public function __construct($useAdGroup = NULL, $SettingType = NULL)
 {
     if (get_parent_class('TargetRestrictSetting')) {
         parent::__construct();
     }
     $this->useAdGroup = $useAdGroup;
     $this->SettingType = $SettingType;
 }
开发者ID:fertandil87,项目名称:adwords-php-client,代码行数:8,代码来源:CampaignService.php


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