/** * @inheritdoc */ public function rules() { return \yii\helpers\ArrayHelper::merge(parent::rules(), [['age', 'compare', 'compareValue' => 18, 'operator' => '>=', 'message' => 'Вам нет 18, сохранение не возможно!']]); }
/** * @return \yii\db\ActiveQuery */ public function getUser() { return $this->hasOne(S22Users::className(), ['id' => 'user_id']); }