Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. class CustomValidator extends RequiredFields
  4. {
  5. public function php($data)
  6. {
  7. if ($data['Type'] == 'Video') {
  8. $this->addRequiredField('VideoImage');
  9. }
  10.  
  11. return parent::php($data);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement