NodeModel.class.php 924 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Admin\Model;
  3. /**
  4. * Node
  5. * 节点模型
  6. */
  7. class NodeModel extends CommonModel {
  8. protected $_validate = array(
  9. // 节点名称不能为空
  10. array('title', 'require', '节点标题不能为空!', 1, 'regex', 3),
  11. // 节点名称不能大于32个字符
  12. array('title', '0,32', '节点标题不能超过32个字符!', 1, 'length', 3),
  13. // 节点名称不能为空
  14. array('name', 'require', '节点名称不能为空!', 1, 'regex', 3),
  15. // 节点名称不能大于32个字符
  16. array('name', '0,32', '节点名称不能超过32个字符!', 1, 'length', 3),
  17. // 状态
  18. array('status', '0,1', '无效的状态!', 1, 'in', 3),
  19. );
  20. protected $_auto = array(
  21. // 创建时间
  22. array('created_at', 'time', 1, 'function'),
  23. // 更新时间
  24. array('updated_at', 'time', 3, 'function')
  25. );
  26. }