Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public function rules()
  2. {
  3. return array(
  4. 'title' => array(
  5. array('not_empty'),
  6. ),
  7. 'content' => array(
  8. array('not_empty'),
  9. ),
  10. 'image' => array(
  11. array('Upload::not_empty'),
  12. array('Upload::valid'),
  13. array('Upload::image'),
  14. array('Upload::size' => array(':value', '4M')),
  15. array('Upload::type' => array(':value', array('jpg', 'png', 'gif'))),
  16. )
  17. );
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement