Guest User

Untitled

a guest
Jan 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <?php defined('SYSPATH') or die('No direct script access.');
  2.  
  3. class Model_Bla extends ORM {
  4.  
  5. public function rules()
  6. {
  7. return array(
  8. 'phone_one' => array(
  9. array('at_least', array($this, 1, array('phone_one', 'phone_two', 'phone_three'))),
  10. ),
  11. 'phone_two' => array(
  12. array('at_least', array($this, 1, array('phone_one', 'phone_two', 'phone_three'))),
  13. ),
  14. 'phone_three' => array(
  15. array('at_least', array($this, 1, array('phone_one', 'phone_two', 'phone_three'))),
  16. ),
  17. );
  18. }
  19. }
Add Comment
Please, Sign In to add comment