Example #1
0
 function AbstractRule()
 {
     parent::AbstrErrHandler();
 }
Example #2
0
 function FrmFieldSet($sentVals, $label, $required, $fieldSetRules = array(), $fieldRules = array(), $default = array())
 {
     parent::AbstrErrHandler();
     /*
     Se la variabile non esiste viene settata ad un valore di default
     */
     if (!isset($sentVals)) {
         $sentVals = $default;
     }
     $this->val =& $sentVals;
     $this->req = $required;
     $this->defVal = $default;
     $this->label = $label;
     $this->fieldSetR =& $fieldSetRules;
     $this->fieldR =& $fieldRules;
 }