ActionAddForm.php

Same filename in this branch
  1. 8.9.x core/modules/action/src/ActionAddForm.php
Same filename and directory in other branches
  1. 10 core/modules/action/src/Form/ActionAddForm.php
  2. 9 core/modules/action/src/Form/ActionAddForm.php

Namespace

Drupal\action\Form

File

core/modules/action/src/Form/ActionAddForm.php

View source
<?php

namespace Drupal\action\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Provides a form for action add forms.
 *
 * @internal
 */
class ActionAddForm extends ActionFormBase {
  
  /**
   * {@inheritdoc}
   *
   * @param string $action_id
   *   The action ID.
   */
  public function buildForm(array $form, FormStateInterface $form_state, $action_id = NULL) {
    $this->entity
      ->setPlugin($action_id);
    // Derive the label and type from the action definition.
    $definition = $this->entity
      ->getPluginDefinition();
    $this->entity
      ->set('label', $definition['label']);
    $this->entity
      ->set('type', $definition['type']);
    return parent::buildForm($form, $form_state);
  }

}

Classes

Title Deprecated Summary
ActionAddForm Provides a form for action add forms.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.