54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Drupal\opencase_entities\Form;
|
||
|
|
||
|
use Drupal\Core\Form\FormBase;
|
||
|
use Drupal\Core\Form\FormStateInterface;
|
||
|
|
||
|
/**
|
||
|
* Class OCCaseSettingsForm.
|
||
|
*
|
||
|
* @ingroup opencase_entities
|
||
|
*/
|
||
|
class OCCaseSettingsForm extends FormBase {
|
||
|
|
||
|
/**
|
||
|
* Returns a unique string identifying the form.
|
||
|
*
|
||
|
* @return string
|
||
|
* The unique string identifying the form.
|
||
|
*/
|
||
|
public function getFormId() {
|
||
|
return 'occase_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 Case 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['occase_settings']['#markup'] = 'Settings form for Case entities. Manage field settings here.';
|
||
|
return $form;
|
||
|
}
|
||
|
|
||
|
}
|