1 | <?php |
||
15 | class EventTemplateSettingsForm extends FormBase { |
||
16 | |||
17 | /** |
||
18 | * Returns a unique string identifying the form. |
||
19 | * |
||
20 | * @return string |
||
21 | * The unique string identifying the form. |
||
22 | */ |
||
23 | public function getFormId() { |
||
26 | |||
27 | /** |
||
28 | * Form submission handler. |
||
29 | * |
||
30 | * @param array $form |
||
31 | * An associative array containing the structure of the form. |
||
32 | * @param \Drupal\Core\Form\FormStateInterface $form_state |
||
33 | * The current state of the form. |
||
34 | */ |
||
35 | public function submitForm(array &$form, FormStateInterface $form_state) { |
||
38 | |||
39 | /** |
||
40 | * Defines the settings form for Event template entities. |
||
41 | * |
||
42 | * @param array $form |
||
43 | * An associative array containing the structure of the form. |
||
44 | * @param \Drupal\Core\Form\FormStateInterface $form_state |
||
45 | * The current state of the form. |
||
46 | * |
||
47 | * @return array |
||
48 | * Form definition array. |
||
49 | */ |
||
50 | public function buildForm(array $form, FormStateInterface $form_state) { |
||
54 | |||
55 | } |
||
56 |