public function ScheduledUpdateSettingsForm::buildForm in Scheduled Updates 8
Defines the settings form for Scheduled update 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/
FormScheduledUpdateSettingsForm.php, line 55 - Contains \Drupal\scheduled_updates\Entity\Form\ScheduledUpdateSettingsForm.
Class
- ScheduledUpdateSettingsForm
- Class ScheduledUpdateSettingsForm.
Namespace
Drupal\scheduled_updates\Entity\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['ScheduledUpdate_settings']['#markup'] = 'Settings form for Scheduled update entities. Manage field settings here.';
return $form;
}