public function FlaggingCollectionSettingsForm::buildForm in Flag Lists 8
Same name and namespace in other branches
- 4.0.x src/Form/FlaggingCollectionSettingsForm.php \Drupal\flag_lists\Form\FlaggingCollectionSettingsForm::buildForm()
Defines the settings form for Flagging collection 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
- src/
Form/ FlaggingCollectionSettingsForm.php, line 48
Class
- FlaggingCollectionSettingsForm
- Class FlaggingCollectionSettingsForm.
Namespace
Drupal\flag_lists\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['flaggingcollection_settings']['#markup'] = 'Settings form for Flagging collection entities. Manage field settings here.';
return $form;
}