MaestroProcessVariablesSettingsForm.php in Maestro 3.x
File
src/Form/MaestroProcessVariablesSettingsForm.php
View source
<?php
namespace Drupal\maestro\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
class MaestroProcessVariablesSettingsForm extends FormBase {
public function getFormId() {
return 'maestro_process_variables_entity_settings';
}
public function submitForm(array &$form, FormStateInterface $form_state) {
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['contact_settings']['#markup'] = 'Maestro Process Variable Entity Settings.';
return $form;
}
}