tapis_job-1.4.1-alpha1/src/Form/TapisJobSettingsForm.php
src/Form/TapisJobSettingsForm.php
<?php
namespace Drupal\tapis_job\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Class TapisJobSettingsForm.
*
* This class is used to create a form that allows a user to manage
* field settings for the Tapis Job entity.
*
* @package Drupal\tapis_job\Form
*/
class TapisJobSettingsForm extends FormBase {
/**
* Returns a unique string identifying the form.
*
* @return string
* The unique string identifying the form.
*/
public function getFormId(): string {
return 'tapis_job_settings_form';
}
/**
* Form submission handler.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* An associative array containing the current state of the form.
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// Empty implementation of the abstract submit class.
}
/**
* Define the form used for ContentEntityExample settings.
*
* @param array $form
* An associative array containing the structure of the form.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* An associative array containing the current state of the form.
*
* @return array
* Form definition array.
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form['tapis_job_settings']['#markup'] = 'Settings form for Tapis Jobs. Manage field settings here.';
return $form;
}
}
