You are here

UserLogin.php in Business Rules 2.x

Same filename and directory in other branches
  1. 8 src/Plugin/BusinessRulesReactsOn/UserLogin.php

File

src/Plugin/BusinessRulesReactsOn/UserLogin.php
View source
<?php

namespace Drupal\business_rules\Plugin\BusinessRulesReactsOn;

use Drupal\business_rules\Plugin\BusinessRulesReactsOnPlugin;
use Drupal\Core\Form\FormStateInterface;

/**
 * Class UserLogin.
 *
 * @package Drupal\business_rules\Plugin\BusinessRulesReactsOn
 *
 * @BusinessRulesReactsOn(
 *   id = "user_login",
 *   label = @Translation("User has logged in"),
 *   description = @Translation("Reacts after the user has logged in."),
 *   group = @Translation("User"),
 *   eventName = "business_rules.user_login",
 *   hasTargetEntity = TRUE,
 *   hasTargetBundle = TRUE,
 *   priority = 1000,
 * )
 */
class UserLogin extends BusinessRulesReactsOnPlugin {

  /**
   * {@inheritdoc}
   */
  public function processForm(array &$form, FormStateInterface $form_state) {
    parent::processForm($form, $form_state);
    $form['entity']['context']['target_entity_type']['#required'] = FALSE;
    $form['entity']['context']['target_entity_type']['#value'] = 'user';
    $form['entity']['context']['target_entity_type']['#disabled'] = TRUE;
    $form['entity']['context']['target_entity_type']['#options'] = [
      'user' => $form['entity']['context']['target_entity_type']['#options']['user'],
    ];
    $form['entity']['context']['target_bundle']['#options'] = [
      'user' => t('User'),
    ];
    $form['entity']['context']['target_bundle']['#required'] = FALSE;
    $form['entity']['context']['target_bundle']['#value'] = 'user';
    $form['entity']['context']['target_bundle']['#disabled'] = TRUE;
  }

}

Classes

Namesort descending Description
UserLogin Class UserLogin.