public function StatusSettingsForm::buildForm in Heartbeat 8
Defines the settings form for Status 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/
statusmessage/ src/ Form/ StatusSettingsForm.php, line 50
Class
- StatusSettingsForm
- Class StatusSettingsForm.
Namespace
Drupal\statusmessage\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['Status_settings']['#markup'] = 'Settings form for Status entities. Manage field settings here.';
return $form;
}