16 lines
426 B
PHP
16 lines
426 B
PHP
<?php
|
|
namespace Common\Model;
|
|
use Common\Model\CommonModel;
|
|
class NavCatModel extends CommonModel {
|
|
|
|
//自动验证
|
|
protected $_validate = array(
|
|
//array(验证字段,验证规则,错误提示,验证条件,附加规则,验证时间)
|
|
array('name', 'require', '分类名称不能为空!', 1, 'regex', CommonModel:: MODEL_BOTH ),
|
|
);
|
|
|
|
protected function _before_write(&$data) {
|
|
parent::_before_write($data);
|
|
}
|
|
|
|
} |