MaestroProcessSettingsForm.php in Maestro 3.x
File
src/Form/MaestroProcessSettingsForm.php
View source
<?php
namespace Drupal\maestro\Form;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
class MaestroProcessSettingsForm extends FormBase {
public function getFormId() {
return 'maestro_process_entity_settings';
}
public function submitForm(array &$form, FormStateInterface $form_state) {
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['contact_settings']['#markup'] = 'Settings form for ContentEntityExample. Manage field settings here.';
return $form;
}
}