Skip to content
Snippets Groups Projects

rerole patch from the comments 34

2 unresolved threads

Closes #2900519

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
5 namespace Drupal\form_test\Form;
6
7 use Drupal\Core\Form\FormBase;
8 use Drupal\Core\Form\FormStateInterface;
9
10 /**
11 * Form constructor for testing #type 'file' elements.
12 *
13 * @internal
14 */
15 class FormTestFieldsetDescriptionForm extends FormBase {
16
17 /**
18 * {@inheritdoc}
19 */
20 public function getFormId() {
  • 22 }
    23
    24 /**
    25 * Build a form to test fieldset ids.
    26 *
    27 * @param array $form
    28 * An associative array containing the structure of the form.
    29 * @param \Drupal\Core\Form\FormStateInterface $form_state
    30 * The current state of the form.
    31 * @param string $id
    32 * The id to use for the fieldset.
    33 *
    34 * @return array
    35 * The form structure.
    36 */
    37 public function buildForm(array $form, FormStateInterface $form_state, $id = '') {
    Please register or sign in to reply
    Loading