You are here

public function QueueStorageEntitySettingsForm::buildForm in Open Social 10.1.x

Same name and namespace in other branches
  1. 8.9 modules/custom/social_queue_storage/src/Form/QueueStorageEntitySettingsForm.php \Drupal\social_queue_storage\Form\QueueStorageEntitySettingsForm::buildForm()
  2. 8.8 modules/custom/social_queue_storage/src/Form/QueueStorageEntitySettingsForm.php \Drupal\social_queue_storage\Form\QueueStorageEntitySettingsForm::buildForm()
  3. 10.3.x modules/custom/social_queue_storage/src/Form/QueueStorageEntitySettingsForm.php \Drupal\social_queue_storage\Form\QueueStorageEntitySettingsForm::buildForm()
  4. 10.0.x modules/custom/social_queue_storage/src/Form/QueueStorageEntitySettingsForm.php \Drupal\social_queue_storage\Form\QueueStorageEntitySettingsForm::buildForm()
  5. 10.2.x modules/custom/social_queue_storage/src/Form/QueueStorageEntitySettingsForm.php \Drupal\social_queue_storage\Form\QueueStorageEntitySettingsForm::buildForm()

Defines the settings form for Queue storage entity entities.

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 Form definition array.

Overrides FormInterface::buildForm

File

modules/custom/social_queue_storage/src/Form/QueueStorageEntitySettingsForm.php, line 48

Class

QueueStorageEntitySettingsForm
Class QueueStorageEntitySettingsForm.

Namespace

Drupal\social_queue_storage\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['queuestorageentity_settings']['#markup'] = $this
    ->t('Settings form for Queue storage entity entities. Manage field settings here.');
  return $form;
}