public ActionFormBase::buildForm(array $form, FormStateInterface $form_state)
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides EntityForm::buildForm
File
- core/modules/action/src/ActionFormBase.php, line 52
Class
- ActionFormBase
- Provides a base form for action forms.
Namespace
Drupal\action
Code
1 2 3 4 | public function buildForm( array $form , FormStateInterface $form_state ) { $this ->plugin = $this ->entity->getPlugin(); return parent::buildForm( $form , $form_state ); } |
Please login to continue.