You are here

public function CacheflushEntitySettingsForm::buildForm in CacheFlush 8

Defines the settings form for Cacheflush 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/cacheflush_ui/src/Entity/Form/CacheflushEntitySettingsForm.php, line 50

Class

CacheflushEntitySettingsForm
Class CacheflushEntitySettingsForm.

Namespace

Drupal\cacheflush_ui\Entity\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['CacheflushEntity_settings']['#markup'] = 'Settings form for Cacheflush entity entities. Manage field settings here.';
  return $form;
}