You are here

class ActionAddForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/action/src/Form/ActionAddForm.php \Drupal\action\Form\ActionAddForm
  2. 9 core/modules/action/src/Form/ActionAddForm.php \Drupal\action\Form\ActionAddForm

Provides a form for action add forms.

@internal

Hierarchy

Expanded class hierarchy of ActionAddForm

1 file declares its use of ActionAddForm
action.module in core/modules/action/action.module
This is the Actions module for executing stored actions.

File

core/modules/action/src/Form/ActionAddForm.php, line 12

Namespace

Drupal\action\Form
View source
class ActionAddForm extends ActionFormBase {

  /**
   * {@inheritdoc}
   *
   * @param array $form
   *   An associative array containing the structure of the form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The current state of the form.
   * @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);
  }

}

Members