本文整理汇总了PHP中CActiveRecord::init方法的典型用法代码示例。如果您正苦于以下问题:PHP CActiveRecord::init方法的具体用法?PHP CActiveRecord::init怎么用?PHP CActiveRecord::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CActiveRecord
的用法示例。
在下文中一共展示了CActiveRecord::init方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
public function init()
{
parent::init();
$this->genderTypes = Yii::app()->config->gender_types;
$this->educationTypes = Yii::app()->config->education_types;
$this->statusTypes = Yii::app()->config->statuses;
$this->maritalStatuses = Yii::app()->config->marital_statuses;
}
示例2: init
public function init()
{
parent::init();
$this->createTime = date('Y-m-d H:i:s');
$this->modifyTime = $this->createTime;
$this->version = 0;
$this->mark = null;
}
示例3: init
public function init()
{
if ($this->scenario === 'custom') {
$this->fea_type = self::TYPE_CUSTOM;
$this->fea_weight = 0;
}
parent::init();
}
示例4: init
public function init($lessonId = 0, $userId = 0)
{
if ($lessonId != 0) {
$this->lessonId = $lessonId;
}
if ($userId != 0) {
$this->userId = $userId;
}
return parent::init();
}
示例5: init
public function init()
{
parent::init();
// Set language
if (!isset(Yii::app()->request->cookies['lang'])) {
$language = Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']) ?: 'en_US';
$cookie = new CHttpCookie('lang', $language);
$cookie->expire = time() + 60 * 60 * 24 * 30;
Yii::app()->request->cookies['lang'] = $cookie;
} else {
$language = (string) Yii::app()->request->cookies['lang'];
}
Yii::app()->setLanguage($language);
}
示例6: init
public function init()
{
parent::init();
$this->site = 'http://' . $_SERVER['SERVER_NAME'] . '/';
$this->page_psw = '';
$this->support = Yii::app()->params['adminEmail'];
$this->campaign = '';
$this->name = '';
$this->login = '';
$this->password = '';
$this->page_cabinet = '';
$this->page_order = '';
$this->name_order = '';
$this->num_order = '';
$this->subject_order = '';
$this->price_order = '';
$this->price_order_part = '';
$this->sum_order = '';
$this->message = '';
$this->page_payment = '';
$this->specialization = '';
$this->name_part = '';
}
示例7: init
public function init()
{
parent::init();
if (array_key_exists('SERVER_NAME', $_SERVER)) {
$this->site = 'http://' . $_SERVER['SERVER_NAME'] . '/';
}
$this->page_psw = '';
$this->support = Company::getSupportEmail();
$this->campaign = Company::getName();
$this->company = Company::getName();
$this->name = '';
$this->login = '';
$this->password = '';
$this->page_cabinet = '';
$this->page_order = '';
$this->name_order = '';
$this->num_order = '';
$this->subject_order = '';
$this->price_order = '';
$this->price_order_part = '';
$this->sum_order = '';
$this->message = '';
$this->page_payment = '';
$this->specialization = '';
$this->name_part = '';
}
示例8: init
public function init()
{
return parent::init();
}
示例9: init
public function init()
{
$this->user_id = Yii::app()->user->id;
// default user
parent::init();
}
示例10: init
public function init()
{
$this->LugaresIni = 1;
$this->LugaresFin = 1;
return parent::init();
}
示例11: init
public function init()
{
parent::init();
$this->surveysCount = 1;
$this->serviceRatio = 100;
}
示例12: init
/**
* @inheritdoc
*/
public function init()
{
parent::init();
$this->statusTypes = Yii::app()->config->user_statuses;
}
示例13: init
public function init()
{
if ($this->getScenario() == 'insert') {
$date = new DateTime();
$date->setTime(0, 0, 0);
$this->start_date = $date->format(self::DF_LOCAL);
$date->setTime(23, 59, 59);
$this->end_date = $date->add(new DateInterval("P1D"))->format(self::DF_LOCAL);
}
return parent::init();
}
示例14: init
public function init()
{
//$this->pathUrlImagesBD = Yii::app()->baseUrl . '/imagesbd/';
$this->pathUrlImagesBD = 'https://' . $_SERVER['SERVER_NAME'] . '/imagesbd/';
return parent::init();
}
示例15: init
/**
* Inits the content record
*/
public function init()
{
parent::init();
// Intercept this controller
Yii::app()->interceptor->intercept($this);
}