You are here

public function SplashifyEntitySettingsForm::buildForm in Splashify 8.2

Defines the settings form for Splashify entity 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/SplashifyEntitySettingsForm.php, line 50

Class

SplashifyEntitySettingsForm
Class SplashifyEntitySettingsForm.

Namespace

Drupal\splashify\Form

Code

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