You are here

public function DraggableListBuilder::buildForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php \Drupal\Core\Config\Entity\DraggableListBuilder::buildForm()
  2. 9 core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php \Drupal\Core\Config\Entity\DraggableListBuilder::buildForm()

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 FormInterface::buildForm

4 calls to DraggableListBuilder::buildForm()
FilterFormatListBuilder::buildForm in core/modules/filter/src/FilterFormatListBuilder.php
Form constructor.
LanguageListBuilder::buildForm in core/modules/language/src/LanguageListBuilder.php
Form constructor.
SearchPageListBuilder::buildForm in core/modules/search/src/SearchPageListBuilder.php
Form constructor.
VocabularyListBuilder::buildForm in core/modules/taxonomy/src/VocabularyListBuilder.php
Form constructor.
4 methods override DraggableListBuilder::buildForm()
FilterFormatListBuilder::buildForm in core/modules/filter/src/FilterFormatListBuilder.php
Form constructor.
LanguageListBuilder::buildForm in core/modules/language/src/LanguageListBuilder.php
Form constructor.
SearchPageListBuilder::buildForm in core/modules/search/src/SearchPageListBuilder.php
Form constructor.
VocabularyListBuilder::buildForm in core/modules/taxonomy/src/VocabularyListBuilder.php
Form constructor.

File

core/lib/Drupal/Core/Config/Entity/DraggableListBuilder.php, line 102

Class

DraggableListBuilder
Defines a class to build a draggable listing of configuration entities.

Namespace

Drupal\Core\Config\Entity

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form[$this->entitiesKey] = [
    '#type' => 'table',
    '#header' => $this
      ->buildHeader(),
    '#empty' => t('There are no @label yet.', [
      '@label' => $this->entityType
        ->getPluralLabel(),
    ]),
    '#tabledrag' => [
      [
        'action' => 'order',
        'relationship' => 'sibling',
        'group' => 'weight',
      ],
    ],
  ];
  $this->entities = $this
    ->load();
  $delta = 10;

  // Change the delta of the weight field if have more than 20 entities.
  if (!empty($this->weightKey)) {
    $count = count($this->entities);
    if ($count > 20) {
      $delta = ceil($count / 2);
    }
  }
  foreach ($this->entities as $entity) {
    $row = $this
      ->buildRow($entity);
    if (isset($row['label'])) {
      $row['label'] = [
        '#plain_text' => $row['label'],
      ];
    }
    if (isset($row['weight'])) {
      $row['weight']['#delta'] = $delta;
    }
    $form[$this->entitiesKey][$entity
      ->id()] = $row;
  }
  $form['actions']['#type'] = 'actions';
  $form['actions']['submit'] = [
    '#type' => 'submit',
    '#value' => t('Save'),
    '#button_type' => 'primary',
  ];
  return $form;
}