__construct() public method

public __construct ( $SettingType = null )
 public function __construct($positiveGeoTargetType = null, $negativeGeoTargetType = null, $SettingType = null)
 {
     parent::__construct();
     $this->positiveGeoTargetType = $positiveGeoTargetType;
     $this->negativeGeoTargetType = $negativeGeoTargetType;
     $this->SettingType = $SettingType;
 }
 public function __construct($domainName = null, $languageCode = null, $SettingType = null)
 {
     parent::__construct();
     $this->domainName = $domainName;
     $this->languageCode = $languageCode;
     $this->SettingType = $SettingType;
 }
示例#3
0
 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);
 }
 /**
  * @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
0
 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);
 }
 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
0
 public function __construct($trackingUrl = null, $SettingType = null)
 {
     parent::__construct();
     $this->trackingUrl = $trackingUrl;
     $this->SettingType = $SettingType;
 }
 public function __construct($details = null, $SettingType = null)
 {
     parent::__construct();
     $this->details = $details;
     $this->SettingType = $SettingType;
 }
示例#9
0
 public function __construct($optIn = null, $SettingType = null)
 {
     parent::__construct();
     $this->optIn = $optIn;
     $this->SettingType = $SettingType;
 }
 public function __construct($optIn = NULL, $SettingType = NULL)
 {
     if (get_parent_class('RealTimeBiddingSetting')) {
         parent::__construct();
     }
     $this->optIn = $optIn;
     $this->SettingType = $SettingType;
 }
示例#11
0
 public function __construct(Model_User $user)
 {
     parent::__construct($user);
     $view = new View_User_Settings_Account();
     $this->add_content($view);
 }
 public function __construct($details = NULL, $SettingType = NULL)
 {
     if (get_parent_class('TargetingSetting')) {
         parent::__construct();
     }
     $this->details = $details;
     $this->SettingType = $SettingType;
 }
 public function __construct($useAdGroup = NULL, $SettingType = NULL)
 {
     if (get_parent_class('TargetRestrictSetting')) {
         parent::__construct();
     }
     $this->useAdGroup = $useAdGroup;
     $this->SettingType = $SettingType;
 }