예제 #1
0
 /**
  * dbFormHandler::isCorrect()
  *
  * Return if the form is filled correctly (for the fields which are set!)
  *
  * @return boolean: the form values valid or not
  * @access public
  * @author Teye Heimans
  */
 function isCorrect()
 {
     $result = parent::isCorrect();
     // check if there is no unique field error when the field is completly correct
     if ($result) {
         return $this->_checkUniqueFields();
     }
     return false;
 }