You are here

class ReferenceablePluginTypesSubscriber in Commerce License 8.2

Class ReferenceablePluginTypesSubscriber.

@package Drupal\commerce_license

Hierarchy

Expanded class hierarchy of ReferenceablePluginTypesSubscriber

1 string reference to 'ReferenceablePluginTypesSubscriber'
commerce_license.services.yml in ./commerce_license.services.yml
commerce_license.services.yml
1 service uses ReferenceablePluginTypesSubscriber
commerce_license.referenceable_plugin_types_subscriber in ./commerce_license.services.yml
Drupal\commerce_license\EventSubscriber\ReferenceablePluginTypesSubscriber

File

src/EventSubscriber/ReferenceablePluginTypesSubscriber.php, line 15

Namespace

Drupal\commerce_license\EventSubscriber
View 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

Namesort descending Modifiers Type Description Overrides
ReferenceablePluginTypesSubscriber::getSubscribedEvents public static function Returns an array of event names this subscriber wants to listen to.
ReferenceablePluginTypesSubscriber::onPluginTypes public function Registers our plugin types as referenceable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.