You are here

public function ScheduleSettingsForm::buildForm in Business Rules 2.x

Same name and namespace in other branches
  1. 8 src/Form/ScheduleSettingsForm.php \Drupal\business_rules\Form\ScheduleSettingsForm::buildForm()

Defines the settings form for Schedule 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/ScheduleSettingsForm.php, line 48

Class

ScheduleSettingsForm
Class ScheduleSettingsForm.

Namespace

Drupal\business_rules\Form

Code

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