You are here

public function UserModuleStatusSettingsForm::buildForm in Opigno module 8

Same name and namespace in other branches
  1. 3.x src/Form/UserModuleStatusSettingsForm.php \Drupal\opigno_module\Form\UserModuleStatusSettingsForm::buildForm()

Defines the settings form for User module status 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/UserModuleStatusSettingsForm.php, line 50

Class

UserModuleStatusSettingsForm
Class UserModuleStatusSettingsForm.

Namespace

Drupal\opigno_module\Form

Code

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