public function ProviderBase::getLabel in Express 8
Retrieves the provider human-readable label.
Return value
string The provider human-readable label.
Overrides ProviderInterface::getLabel
File
- themes/
contrib/ bootstrap/ src/ Plugin/ Provider/ ProviderBase.php, line 102 - Contains \Drupal\bootstrap\Plugin\Provider\ProviderBase.
Class
- ProviderBase
- CDN provider base class.
Namespace
Drupal\bootstrap\Plugin\ProviderCode
public function getLabel() {
return $this->pluginDefinition['label'] ?: $this
->getPluginId();
}