protected function AnnotatedClassDiscovery::getProviderFromNamespace in Plug 7
Extracts the provider name from a Drupal namespace.
Parameters
string $namespace: The namespace to extract the provider from.
Return value
string|null The matching provider name, or NULL otherwise.
1 call to AnnotatedClassDiscovery::getProviderFromNamespace()
- AnnotatedClassDiscovery::prepareAnnotationDefinition in lib/
Drupal/ Core/ Plugin/ Discovery/ AnnotatedClassDiscovery.php - Prepares the annotation definition.
File
- lib/
Drupal/ Core/ Plugin/ Discovery/ AnnotatedClassDiscovery.php, line 105 - Contains \Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery.
Class
- AnnotatedClassDiscovery
- Defines a discovery mechanism to find annotated plugins in PSR-0 namespaces.
Namespace
Drupal\Core\Plugin\DiscoveryCode
protected function getProviderFromNamespace($namespace) {
preg_match('|^Drupal\\\\(?<provider>[\\w]+)\\\\|', $namespace, $matches);
if (isset($matches['provider'])) {
return Unicode::strtolower($matches['provider']);
}
return NULL;
}