25 lines
569 B
Plaintext
25 lines
569 B
Plaintext
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 小说系统 [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\common\validate;
|
|
|
|
/**
|
|
* 设置模型
|
|
*/
|
|
class Form extends Base {
|
|
protected $rule = array(
|
|
'title' => 'require',
|
|
'name' => 'require|unique:form|/^[a-zA-Z]\w{0,39}$/',
|
|
);
|
|
|
|
protected $message = array(
|
|
'title.require' => '字段标题不能为空!',
|
|
);
|
|
|
|
protected $scene = array(
|
|
'add' => 'title',
|
|
'edit' => 'title'
|
|
);
|
|
} |