本文整理汇总了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;
}
示例2: __construct
public function __construct($domainName = null, $languageCode = null, $SettingType = null)
{
parent::__construct();
$this->domainName = $domainName;
$this->languageCode = $languageCode;
$this->SettingType = $SettingType;
}
示例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);
}
示例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();
}
示例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);
}
示例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;
}
示例7: __construct
public function __construct($trackingUrl = null, $SettingType = null)
{
parent::__construct();
$this->trackingUrl = $trackingUrl;
$this->SettingType = $SettingType;
}
示例8: __construct
public function __construct($details = null, $SettingType = null)
{
parent::__construct();
$this->details = $details;
$this->SettingType = $SettingType;
}
示例9: __construct
public function __construct($optIn = null, $SettingType = null)
{
parent::__construct();
$this->optIn = $optIn;
$this->SettingType = $SettingType;
}
示例10: __construct
public function __construct($optIn = NULL, $SettingType = NULL)
{
if (get_parent_class('RealTimeBiddingSetting')) {
parent::__construct();
}
$this->optIn = $optIn;
$this->SettingType = $SettingType;
}
示例11: __construct
public function __construct(Model_User $user)
{
parent::__construct($user);
$view = new View_User_Settings_Account();
$this->add_content($view);
}
示例12: __construct
public function __construct($details = NULL, $SettingType = NULL)
{
if (get_parent_class('TargetingSetting')) {
parent::__construct();
}
$this->details = $details;
$this->SettingType = $SettingType;
}
示例13: __construct
public function __construct($useAdGroup = NULL, $SettingType = NULL)
{
if (get_parent_class('TargetRestrictSetting')) {
parent::__construct();
}
$this->useAdGroup = $useAdGroup;
$this->SettingType = $SettingType;
}