You are here

class MapRenderEventSubscriber in farmOS 2.x

Same name in this branch
  1. 2.x modules/asset/land/src/EventSubscriber/MapRenderEventSubscriber.php \Drupal\farm_land\EventSubscriber\MapRenderEventSubscriber
  2. 2.x modules/asset/structure/src/EventSubscriber/MapRenderEventSubscriber.php \Drupal\farm_structure\EventSubscriber\MapRenderEventSubscriber
  3. 2.x modules/core/map/src/EventSubscriber/MapRenderEventSubscriber.php \Drupal\farm_map\EventSubscriber\MapRenderEventSubscriber
  4. 2.x modules/core/quantity/src/EventSubscriber/MapRenderEventSubscriber.php \Drupal\quantity\EventSubscriber\MapRenderEventSubscriber
  5. 2.x modules/core/ui/map/src/EventSubscriber/MapRenderEventSubscriber.php \Drupal\farm_ui_map\EventSubscriber\MapRenderEventSubscriber
  6. 2.x modules/core/map/modules/mapbox/src/EventSubscriber/MapRenderEventSubscriber.php \Drupal\farm_map_mapbox\EventSubscriber\MapRenderEventSubscriber

An event subscriber for the MapRenderEvent.

Adds the quantity.system_of_measurement setting to maps.

Hierarchy

  • class \Drupal\quantity\EventSubscriber\MapRenderEventSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of MapRenderEventSubscriber

1 string reference to 'MapRenderEventSubscriber'
quantity.services.yml in modules/core/quantity/quantity.services.yml
modules/core/quantity/quantity.services.yml
1 service uses MapRenderEventSubscriber
quantity_event_subscriber in modules/core/quantity/quantity.services.yml
Drupal\quantity\EventSubscriber\MapRenderEventSubscriber

File

modules/core/quantity/src/EventSubscriber/MapRenderEventSubscriber.php, line 14

Namespace

Drupal\quantity\EventSubscriber
View source
class MapRenderEventSubscriber implements EventSubscriberInterface {

  /**
   * The config factory service.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  private $configFactory;

  /**
   * Constructor.
   *
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config factory service.
   */
  public function __construct(ConfigFactoryInterface $config_factory) {
    $this->configFactory = $config_factory;
  }

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    return [
      MapRenderEvent::EVENT_NAME => 'onMapRender',
    ];
  }

  /**
   * React to the MapRenderEvent.
   *
   * @param \Drupal\farm_map\Event\MapRenderEvent $event
   *   The MapRenderEvent.
   *
   * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
   * @throws \Drupal\Component\Plugin\Exception\PluginNotFoundException
   */
  public function onMapRender(MapRenderEvent $event) {

    // Set a cache tag on the quantity settings in case this ever changes.
    $event
      ->addCacheTags([
      'config:quantity.settings',
    ]);

    // Add the system of measurement to drupalSettings.farm_map.units.
    $measurement = $this->configFactory
      ->get('quantity.settings')
      ->get('system_of_measurement');
    $event->element['#attached']['drupalSettings']['farm_map']['units'] = $measurement;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MapRenderEventSubscriber::$configFactory private property The config factory service.
MapRenderEventSubscriber::getSubscribedEvents public static function
MapRenderEventSubscriber::onMapRender public function React to the MapRenderEvent.
MapRenderEventSubscriber::__construct public function Constructor.