ButtonFieldClickedEvent.php in Button Field 8
Namespace
Drupal\button_field\EventFile
src/Event/ButtonFieldClickedEvent.phpView 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
Name | Description |
---|---|
ButtonFieldClickedEvent | Event that is fired when a user clicks a button field on an entity. |