/var/www/vhosts/nabawater/backend/models
Edit: /var/www/vhosts/nabawater/backend/models/TodaySpecialUploadForm.php (1867B)
true,
'maxSize' => 1024 * 1024 * 10,
'mimeTypes' => ['image/png', 'image/jpg', 'image/jpeg']
],
[
'today_special_image_path', 'required',
'when' => function (TodaySpecial $model) {
return $model->vendor_id != null;
},
'whenClient' => "function(attribute, value) {
return ($('#todayspecial-vendor_id').val() != '') ? true : false;
}"
],
[
'today_special_image_path', 'required',
'when' => function (TodaySpecial $model) {
return $model->url == null;
},
'whenClient' => "function(attribute, value) {
return ($('#todayspecial-url').val() == '') ? true : false;
}"
]
];
}
/**
*
* @return array
*/
public function scenarios()
{
$scenarios = parent::scenarios();
$scenarios[self::SCENARIO_CREATE] = [
'today_special_image_path',
];
return $scenarios;
}
/**
*
* @return array
*/
public function attributeLabels()
{
return [
'today_special_image_path' => yii::t('backend','Today Special Image')
];
}
}