component_schema-1.0.x-dev/src/Event/ComponentStorageTransformEvent.php

src/Event/ComponentStorageTransformEvent.php
<?php

namespace Drupal\component_schema\Event;

use Symfony\Contracts\EventDispatcher\Event;
use Drupal\Core\Config\StorageInterface;

/**
 * Class ComponentStorageTransformEvent.
 *
 * This event allows subscribers to alter the configuration of the storage that
 * is being transformed.
 */
class ComponentStorageTransformEvent extends Event {

  /**
   * The configuration storage which is transformed.
   *
   * This storage can be interacted with by event subscribers and will be
   * used instead of the original storage after all event subscribers have been
   * called.
   *
   * @var \Drupal\Core\Config\StorageInterface
   */
  protected $storage;

  /**
   * StorageTransformEvent constructor.
   *
   * @param \Drupal\Core\Config\StorageInterface $storage
   *   The storage with the configuration to transform.
   */
  public function __construct(StorageInterface $storage) {
    $this->storage = $storage;
  }

  /**
   * Returns the mutable storage ready to be read from and written to.
   *
   * @return \Drupal\Core\Config\StorageInterface
   *   The config storage.
   */
  public function getStorage() {
    return $this->storage;
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc