You are here

class MessageUiContextualLinkNotifyMessage in Message UI 8

Notify message contextual plugin link.

Plugin annotation


@MessageUiViewsContextualLinks(
 id = "notify",
 label = @Translation("Notify."),
 weight = 4
)

Hierarchy

Expanded class hierarchy of MessageUiContextualLinkNotifyMessage

File

modules/message_notify_ui/src/Plugin/MessageUiViewsContextualLinks/MessageUiContextualLinkNotifyMessage.php, line 22

Namespace

Drupal\message_notify_ui\Plugin\MessageUiViewsContextualLinks
View source
class MessageUiContextualLinkNotifyMessage extends MessageUiViewsContextualLinksBase implements MessageUiViewsContextualLinksInterface, ContainerFactoryPluginInterface {

  /**
   * Drupal\Core\Entity\EntityTypeManagerInterface definition.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The current user service.
   *
   * @var \Drupal\Core\Session\AccountProxyInterface
   */
  protected $currentUser;

  /**
   * Construct.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin_id for the plugin instance.
   * @param string $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager service.
   * @param \Drupal\Core\Session\AccountProxyInterface $current_user
   *   The current user service.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, AccountProxyInterface $current_user) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->entityTypeManager = $entity_type_manager;
    $this->currentUser = $current_user;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('entity_type.manager'), $container
      ->get('current_user'));
  }

  /**
   * {@inheritdoc}
   */
  public function access() {
    return $this->currentUser
      ->hasPermission('send message through the ui');
  }

  /**
   * {@inheritdoc}
   */
  public function getRouterInfo() {
    return [
      'title' => t('Notify'),
      'url' => Url::fromRoute('entity.message.notify_form', [
        'message' => $this->message
          ->id(),
      ]),
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
MessageUiContextualLinkNotifyMessage::$currentUser protected property The current user service.
MessageUiContextualLinkNotifyMessage::$entityTypeManager protected property Drupal\Core\Entity\EntityTypeManagerInterface definition.
MessageUiContextualLinkNotifyMessage::access public function Checking if the user have access to do the action. Overrides MessageUiViewsContextualLinksInterface::access
MessageUiContextualLinkNotifyMessage::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
MessageUiContextualLinkNotifyMessage::getRouterInfo public function Return the an array with the router ID and message info. Overrides MessageUiViewsContextualLinksInterface::getRouterInfo
MessageUiContextualLinkNotifyMessage::__construct public function Construct. Overrides PluginBase::__construct
MessageUiViewsContextualLinksBase::$message protected property The message object.
MessageUiViewsContextualLinksBase::getMessage public function Get te message object. Overrides MessageUiViewsContextualLinksInterface::getMessage
MessageUiViewsContextualLinksBase::setMessage public function Set the message object. Overrides MessageUiViewsContextualLinksInterface::setMessage
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.