class ReferenceablePluginTypesSubscriber in Commerce License 8.2
Class ReferenceablePluginTypesSubscriber.
@package Drupal\commerce_license
Hierarchy
- class \Drupal\commerce_license\EventSubscriber\ReferenceablePluginTypesSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface uses StringTranslationTrait
Expanded class hierarchy of ReferenceablePluginTypesSubscriber
1 string reference to 'ReferenceablePluginTypesSubscriber'
1 service uses ReferenceablePluginTypesSubscriber
File
- src/
EventSubscriber/ ReferenceablePluginTypesSubscriber.php, line 15
Namespace
Drupal\commerce_license\EventSubscriberView source
class ReferenceablePluginTypesSubscriber implements EventSubscriberInterface {
use StringTranslationTrait;
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
return [
CommerceEvents::REFERENCEABLE_PLUGIN_TYPES => 'onPluginTypes',
];
}
/**
* Registers our plugin types as referenceable.
*
* @param \Drupal\commerce\Event\ReferenceablePluginTypesEvent $event
* The event.
*/
public function onPluginTypes(ReferenceablePluginTypesEvent $event) {
$plugin_types = $event
->getPluginTypes();
$plugin_types['commerce_license_type'] = $this
->t('License type');
$event
->setPluginTypes($plugin_types);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ReferenceablePluginTypesSubscriber:: |
public static | function | Returns an array of event names this subscriber wants to listen to. | |
ReferenceablePluginTypesSubscriber:: |
public | function | Registers our plugin types as referenceable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |