You are here

public function SettingsForm::buildForm in Cloud Zoom 8

Form constructor.

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 The form structure.

Overrides ConfigFormBase::buildForm

File

src/Form/SettingsForm.php, line 30

Class

SettingsForm
Configure site information settings for this site.

Namespace

Drupal\cloud_zoom\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $config = $this
    ->config('cloud_zoom.settings');
  return parent::buildForm($form, $form_state);
}