12 February
code to create custom form in Drupal 8 and 9
Published On: Sun, 02/12/2023 - 22:51
Here is an example of a custom form with an email and message field in Drupal 8 or 9
use Drupal\Core\Form\FormBase; use Drupal\Core\Form\FormStateInterface; /** * Class CustomForm. */ class CustomForm extends FormBase { /** * {@inheritdoc} */ public function getFormId() { return 'custom_form'; } /** * {@inheritdoc} */ public function buildForm(array $form, FormStateInterface $form_state) { $form['email'] = [ '#type' => 'email', '#…