| 123456789101112131415161718192021222324252627 |
- <?php
- namespace hd\models;
- use yii\base\Model;
- use common\components\util;
- /**
- * 管理员表单基类
- */
- class BaseForm extends Model
- {
- /**
- * 验证表单数据并返回结果
- *
- * @return bool 验证是否通过
- */
- public function validateForm()
- {
- if (!$this->validate()) {
- $errors = $this->getFirstErrors();
- $message = reset($errors);
- util::fail($message);
- return false;
- }
- return true;
- }
- }
|