You are here

MentionsDelete.php in Open Social 8.4

File

modules/custom/mentions/src/EventSubscriber/MentionsDelete.php
View source
<?php

namespace Drupal\mentions\EventSubscriber;

use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
 * MentionsDelete handles event 'mentions.delete'.
 */
class MentionsDelete implements EventSubscriberInterface {

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    $events = [];
    $events['mentions.delete'][] = [
      'onMentionsDelete',
      0,
    ];
    return $events;
  }

  /**
   * Event handler.
   */
  public function onMentionsDelete($event) {
    $config = \Drupal::config('mentions.mentions');
    $config_mentions_events = $config
      ->get('mentions_events');
    $action_id = $config_mentions_events['delete'];
    if (empty($action_id)) {
      return;
    }
    $entity_storage = \Drupal::entityManager()
      ->getStorage('action');
    $action = $entity_storage
      ->load($action_id);
    $action_plugin = $action
      ->getPlugin();
    if (!empty($action_id)) {
      $action_plugin
        ->execute(FALSE);
    }
  }

}

Classes

Namesort descending Description
MentionsDelete MentionsDelete handles event 'mentions.delete'.