/var/www/vhosts/nabawater/common/models/base
Edit: /var/www/vhosts/nabawater/common/models/base/BaseTodaySpecialLang.php (1774B)
8],
[['today_special_name'], 'string', 'max' => 64],
[['today_special_id'], 'exist', 'skipOnError' => true, 'targetClass' => BaseTodaySpecial::className(), 'targetAttribute' => ['today_special_id' => 'today_special_id']],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'today_special_lang_id' => Yii::t('common', 'Today Special Lang ID'),
'today_special_id' => Yii::t('common', 'Today Special ID'),
'language_code' => Yii::t('common', 'Language Code'),
'today_special_name' => Yii::t('common', 'Today Special Name'),
'today_special_image_path' => Yii::t('common', 'Today Special Image Path'),
];
}
/**
* @return \yii\db\ActiveQuery
*/
public function getTodaySpecial()
{
return $this->hasOne(BaseTodaySpecial::className(), ['today_special_id' => 'today_special_id']);
}
}