You are here

public function CvWebformFileValidator::supports in Clientside Validation 7.2

Overrides CvWebformValidator::supports

File

clientside_validation_webform/plugins/validator/webformfile.inc, line 12

Class

CvWebformFileValidator

Code

public function supports(array $element, array &$form_state) {
  if (!parent::supports($element, $form_state)) {
    return FALSE;
  }
  return $element['#webform_component']['type'] == 'file';
}