public static function UrlHelper::getAllowedProtocols in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Component/Utility/UrlHelper.php \Drupal\Component\Utility\UrlHelper::getAllowedProtocols()
Gets the allowed protocols.
Return value
array An array of protocols, for example http, https and irc.
1 call to UrlHelper::getAllowedProtocols()
- LinkExternalProtocolsConstraintValidator::validate in core/
modules/ link/ src/ Plugin/ Validation/ Constraint/ LinkExternalProtocolsConstraintValidator.php - Checks if the passed value is valid.
File
- core/
lib/ Drupal/ Component/ Utility/ UrlHelper.php, line 284 - Contains \Drupal\Component\Utility\UrlHelper.
Class
- UrlHelper
- Helper class URL based methods.
Namespace
Drupal\Component\UtilityCode
public static function getAllowedProtocols() {
return static::$allowedProtocols;
}