Example #1
0
 public function __construct(array $options = array())
 {
     $this->_data['docente'] = NULL;
     $this->_data['docenteInep'] = NULL;
     parent::__construct($options);
 }
Example #2
0
 public function getDefaultValidatorCollection()
 {
     $validators = array('escola' => new CoreExt_Validate_Numeric(array('min' => 0)), 'escolaInep' => new CoreExt_Validate_Numeric(array('min' => 0)));
     return array_merge($validators, parent::getDefaultValidatorCollection());
 }