Guest User

Untitled

a guest
Oct 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. public function rules()
  3. {
  4. return array(
  5. array(
  6. 'end_time',
  7. 'compare',
  8. 'compareAttribute'=>'start_time',
  9. 'operator'=>'>',
  10. 'on'=>'insert',
  11. 'message'=>'Ending time should be greater than starting time'
  12. ),
  13. );
  14. }
Add Comment
Please, Sign In to add comment