pino-8.x-1.2-no-core/modules/member/src/Form/MemberSettingsForm.php
modules/member/src/Form/MemberSettingsForm.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <?php namespace Drupal\member\Form; use Drupal\Core\Form\FormBase; use Drupal\Core\Form\FormStateInterface; /** * Class MemberSettingsForm. * * @ingroup member */ class MemberSettingsForm extends FormBase { /** * Returns a unique string identifying the form. * * @return string * The unique string identifying the form. */ public function getFormId() { return 'member_settings' ; } /** * Form submission handler. * * @param array $form * An associative array containing the structure of the form. * @param \Drupal\Core\Form\FormStateInterface $form_state * The current state of the form. */ public function submitForm( array & $form , FormStateInterface $form_state ) { // Empty implementation of the abstract submit class. } /** * Defines the settings form for Member entities. * * @param array $form * An associative array containing the structure of the form. * @param \Drupal\Core\Form\FormStateInterface $form_state * The current state of the form. * * @return array * Form definition array. */ public function buildForm( array $form , FormStateInterface $form_state ) { $form [ 'member_settings' ][ '#markup' ] = 'Settings form for Member entities. Manage field settings here.' ; return $form ; } } |