| 123456789101112131415161718192021222324252627 |
- <?php
- /**
- * 洛阳赤炎鹰网络科技有限公司
- * https://www.cyyvip.com
- * Copyright (c) 2022 赤店商城 All rights reserved.
- */
- namespace Common\Model;
- use Common\Model\CommonModel;
- class LinksModel extends CommonModel
- {
-
- //自动验证
- protected $_validate = array(
- //array(验证字段,验证规则,错误提示,验证条件,附加规则,验证时间)
- array('link_name', 'require', '链接名称不能为空!', 1, 'regex', 3),
- array('link_url', 'require', '链接地址不能为空!', 1, 'regex', 3),
- );
-
- protected function _before_write(&$data) {
- parent::_before_write($data);
- }
-
- }
|