Skip to content

Instantly share code, notes, and snippets.

@rakeshjames
Created July 15, 2016 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rakeshjames/d37fa05420b6e7eec8138e10bd011594 to your computer and use it in GitHub Desktop.
Save rakeshjames/d37fa05420b6e7eec8138e10bd011594 to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* Contains \Drupal\example_events\ExampleEventSubScriber.
*/
namespace Drupal\example_events\EventSubscriber;
use Drupal\Core\Config\ConfigCrudEvent;
use Drupal\Core\Config\ConfigEvents;
use Drupal\example_events\ExampleEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* Class ExampleEventSubScriber.
*
* @package Drupal\example_events
*/
class ExampleEventSubScriber implements EventSubscriberInterface {
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
$events[ConfigEvents::SAVE][] = array('onSavingConfig', 800);
$events[ExampleEvent::SUBMIT][] = array('doSomeAction', 800);
return $events;
}
/**
* Subscriber Callback for the event.
* @param ExampleEvent $event
*/
public function doSomeAction(ExampleEvent $event) {
drupal_set_message("The Example Event has been subscribed, which has bee dispatched on submit of the form with " . $event->getReferenceID() . " as Reference");
}
/**
* Subscriber Callback for the event.
* @param ConfigCrudEvent $event
*/
public function onSavingConfig(ConfigCrudEvent $event) {
drupal_set_message("You have saved a configuration of " . $event->getConfig()->getName());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment