RobotAddForm.php

Same filename in other branches
  1. 3.x modules/config_entity_example/src/Form/RobotAddForm.php
  2. 8.x-1.x config_entity_example/src/Form/RobotAddForm.php

Namespace

Drupal\config_entity_example\Form

File

modules/config_entity_example/src/Form/RobotAddForm.php

View source
<?php

namespace Drupal\config_entity_example\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Class RobotAddForm.
 *
 * Provides the add form for our Robot entity.
 *
 * @ingroup config_entity_example
 */
class RobotAddForm extends RobotFormBase {
    
    /**
     * Returns the actions provided by this form.
     *
     * For our add form, we only need to change the text of the submit button.
     *
     * @param array $form
     *   An associative array containing the structure of the form.
     * @param \Drupal\Core\Form\FormStateInterface $form_state
     *   An associative array containing the current state of the form.
     *
     * @return array
     *   An array of supported actions for the current entity form.
     */
    protected function actions(array $form, FormStateInterface $form_state) {
        $actions = parent::actions($form, $form_state);
        $actions['submit']['#value'] = $this->t('Create Robot');
        return $actions;
    }

}

Classes

Title Deprecated Summary
RobotAddForm Class RobotAddForm.