Created
July 15, 2016 06:17
-
-
Save rakeshjames/d37fa05420b6e7eec8138e10bd011594 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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