public static function Url::validateUrl

public static Url::validateUrl(&$element, FormStateInterface $form_state, &$complete_form)

Form element validation handler for #type 'url'.

Note that #maxlength and #required is validated by _form_validate() already.

File

core/lib/Drupal/Core/Render/Element/Url.php, line 62

Class

Url
Provides a form element for input of a URL.

Namespace

Drupal\Core\Render\Element

Code

public static function validateUrl(&$element, FormStateInterface $form_state, &$complete_form) {
  $value = trim($element['#value']);
  $form_state->setValueForElement($element, $value);

  if ($value !== '' && !UrlHelper::isValid($value, TRUE)) {
    $form_state->setError($element, t('The URL %url is not valid.', array('%url' => $value)));
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Render!Element!Url.php/function/Url::validateUrl/8.1.x