示例#1
0
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     if (!$this->modelField->model->hasProperty("maxFileSize")) {
         throw new InvalidConfigException("Model must have 'maxFileSize' property");
     }
 }
示例#2
0
 public function init()
 {
     parent::init();
     if (empty($this->fromAttr) || empty($this->toAttr)) {
         throw new InvalidConfigException("Properties 'fromAttr', 'toAttr' can`t be blank");
     }
 }