public static function Feed::getSupportedSchemes in Feeds 8.3
Returns which url schemes are supported by Feeds.
Return value
array The support schemes.
1 call to Feed::getSupportedSchemes()
- HttpFetcherFeedForm::validateConfigurationForm in src/
Feeds/ Fetcher/ Form/ HttpFetcherFeedForm.php - Form validation handler.
File
- src/
Utility/ Feed.php, line 133
Class
- Feed
- Helper functions for dealing with feeds.
Namespace
Drupal\feeds\UtilityCode
public static function getSupportedSchemes() {
return [
'http',
'feed',
'webcal',
'https',
'feeds',
'webcals',
];
}