You are here

public function RealEstateSettingsForm::buildForm in Styled Google Map 8.2

Defines the settings form for Real estate 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/demo/src/Form/RealEstateSettingsForm.php, line 48

Class

RealEstateSettingsForm
Class RealEstateSettingsForm.

Namespace

Drupal\styled_google_map_demo\Form

Code

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