You are here

ButtonFieldClickedEvent.php in Button Field 8

File

src/Event/ButtonFieldClickedEvent.php
View source
<?php

/**
 * @file
 * Contains \Drupal\button_field\Event\ButtonFieldClickedEvent.
 */
namespace Drupal\button_field\Event;

use Drupal\user\UserInterface;
use Symfony\Component\EventDispatcher\GenericEvent;

/**
 * Event that is fired when a user clicks a button field on an entity.
 *
 * @see rules_user_login()
 */
class ButtonFieldClickedEvent extends GenericEvent {
  const EVENT_NAME = 'button_field_clicked';

}

Classes

Namesort descending Description
ButtonFieldClickedEvent Event that is fired when a user clicks a button field on an entity.