You are here

abstract class CvWebformValidator in Clientside Validation 7.2

Hierarchy

Expanded class hierarchy of CvWebformValidator

File

clientside_validation_webform/includes/CvWebformValidator.inc, line 3

View source
abstract class CvWebformValidator extends ClientsideValidationValidator {
  public function supports(array $element, array &$form_state) {
    return parent::supports($element, $form_state) && isset($element['#webform_component']) && (!isset($element['#webform_component']['extra']['exclude_cv']) || !$element['#webform_component']['extra']['exclude_cv']);
  }

}

Members