ExampleConfigEntityExistingForm.php

Same filename and directory in other branches
  1. 4.0.x tests/modules/ctools_wizard_test/src/Form/ExampleConfigEntityExistingForm.php

Namespace

Drupal\ctools_wizard_test\Form

File

tests/modules/ctools_wizard_test/src/Form/ExampleConfigEntityExistingForm.php

View source
<?php

namespace Drupal\ctools_wizard_test\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Simple wizard step form.
 */
class ExampleConfigEntityExistingForm extends FormBase {
    
    /**
     * {@inheritdoc}
     */
    public function getFormId() {
        return 'ctools_wizard_test_config_entity_existing_form';
    }
    
    /**
     * {@inheritdoc}
     */
    public function buildForm(array $form, FormStateInterface $form_state) {
        $form['existing'] = [
            '#markup' => '<p>This step only shows if the entity is already existing!</p>',
        ];
        return $form;
    }
    
    /**
     * {@inheritdoc}
     */
    public function submitForm(array &$form, FormStateInterface $form_state) {
        // Do nothing!
    }

}

Classes

Title Deprecated Summary
ExampleConfigEntityExistingForm Simple wizard step form.