Mercurial > hg > isophonics-drupal-site
view core/modules/action/src/ActionAddForm.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\action; 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); } }