InviteTypeSettingsForm.php in Invite 8
Namespace
Drupal\invite\FormFile
src/Form/InviteTypeSettingsForm.phpView source
<?php
namespace Drupal\invite\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Class InviteTypeSettingsForm.
*
* @package Drupal\invite\Form
*
* @ingroup invite
*/
class InviteTypeSettingsForm extends FormBase {
/**
* Returns a unique string identifying the form.
*
* @return string
* The unique string identifying the form.
*/
public function getFormId() {
return 'InviteType_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) {
}
/**
* Defines the settings form for Invite type 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['InviteType_settings']['#markup'] = 'Settings form for Invite type entities. Manage field settings here.';
return $form;
}
}
Classes
Name | Description |
---|---|
InviteTypeSettingsForm | Class InviteTypeSettingsForm. |