You are here

ReferenceablePluginTypesEvent.php in Commerce Core 8.2

File

src/Event/ReferenceablePluginTypesEvent.php
View source
<?php

namespace Drupal\commerce\Event;

use Drupal\commerce\EventBase;

/**
 * Defines the referenceable plugin types event.
 *
 * @see \Drupal\commerce\Event\CommerceEvents
 */
class ReferenceablePluginTypesEvent extends EventBase {

  /**
   * The plugin types, in the id => label format.
   *
   * @var array
   */
  protected $pluginTypes;

  /**
   * Constructs a new ReferenceablePluginTypesEvent object.
   *
   * @param array $plugin_types
   *   The plugin types, in the id => label format.
   */
  public function __construct(array $plugin_types) {
    $this->pluginTypes = $plugin_types;
  }

  /**
   * Gets the plugin types.
   *
   * @return array
   *   The plugin types, in the id => label format.
   */
  public function getPluginTypes() {
    return $this->pluginTypes;
  }

  /**
   * Sets the plugin types.
   *
   * @param array $plugin_types
   *   The plugin types, in the id => label format.
   *
   * @return $this
   */
  public function setPluginTypes(array $plugin_types) {
    $this->pluginTypes = $plugin_types;
    return $this;
  }

}

Classes

Namesort descending Description
ReferenceablePluginTypesEvent Defines the referenceable plugin types event.