Пример #1
0
 /**
  * Check if the current element is valid
  * @return bool
  */
 public function isValid(Element $element = null)
 {
     if (null === $element) {
         $element = $this->element;
     }
     return $this->formContext->elementIsValid($element);
 }
Пример #2
0
 public function isValid()
 {
     return $this->formContext->elementIsValid($this->element);
 }