class YamlFormUiElementTestForm in YAML Form 8
Provides a test form for form elements.
This form is only visible if the yamlform_devel.module is enabled.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\yamlform_ui\Form\YamlFormUiElementFormBase implements YamlFormUiElementFormInterface uses YamlFormDialogTrait
- class \Drupal\yamlform_ui\Form\YamlFormUiElementTestForm
- class \Drupal\yamlform_ui\Form\YamlFormUiElementFormBase implements YamlFormUiElementFormInterface uses YamlFormDialogTrait
Expanded class hierarchy of YamlFormUiElementTestForm
See also
\Drupal\yamlform\Controller\YamlFormPluginElementController::index
1 string reference to 'YamlFormUiElementTestForm'
- yamlform_ui.routing.yml in modules/
yamlform_ui/ yamlform_ui.routing.yml - modules/yamlform_ui/yamlform_ui.routing.yml
File
- modules/
yamlform_ui/ src/ Form/ YamlFormUiElementTestForm.php, line 20
Namespace
Drupal\yamlform_ui\FormView source
class YamlFormUiElementTestForm extends YamlFormUiElementFormBase {
/**
* Type of form element being tested.
*
* @var string
*/
protected $type;
/**
* A form element.
*
* @var \Drupal\yamlform\YamlFormElementInterface
*/
protected $yamlformElement;
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'yamlform_ui_element_test_form';
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, $type = NULL) {
// Create a temp form.
$this->yamlform = YamlForm::create([
'id' => 'yamlform_ui_element_test_form',
]);
$this->type = $type;
if (!$this->elementManager
->hasDefinition($type)) {
throw new NotFoundHttpException();
}
if ($test_element = \Drupal::request()
->getSession()
->get('yamlform_ui_test_element_' . $type)) {
$this->element = $test_element;
}
elseif (function_exists('_yamlform_test_get_example_element') && ($test_element = _yamlform_test_get_example_element($type))) {
$this->element = $test_element;
}
$this->element['#type'] = $type;
$this->yamlformElement = $this->elementManager
->getElementInstance($this->element);
$form['#title'] = $this
->t('Test %type element', [
'%type' => $type,
]);
if ($test_element) {
$yamlform_submission = YamlFormSubmission::create([
'yamlform' => $this->yamlform,
]);
$this->yamlformElement
->initialize($test_element);
$this->yamlformElement
->initialize($this->element);
$this->yamlformElement
->prepare($this->element, $yamlform_submission);
$form['test'] = [
'#type' => 'details',
'#title' => $this
->t('Element test'),
'#open' => TRUE,
'#attributes' => [
'style' => 'background-color: #f5f5f2',
],
'element' => $this->element,
'hr' => [
'#markup' => '<hr/>',
],
];
if (isset($test_element['#default_value'])) {
$html = $this->yamlformElement
->formatHtml($test_element, $test_element['#default_value']);
$form['test']['html'] = [
'#type' => 'item',
'#title' => $this
->t('HTML'),
'#markup' => is_array($html) ? $this->renderer
->render($html) : $html,
'#allowed_tag' => Xss::getAdminTagList(),
];
$form['test']['text'] = [
'#type' => 'item',
'#title' => $this
->t('Plain text'),
'#markup' => '<pre>' . $this->yamlformElement
->formatText($test_element, $test_element['#default_value']) . '</pre>',
'#allowed_tag' => Xss::getAdminTagList(),
];
}
$form['test']['code'] = [
'#type' => 'item',
'#title' => $this
->t('Source'),
'source' => [
'#theme' => 'yamlform_codemirror',
'#type' => 'yaml',
'#code' => Yaml::encode($this
->convertTranslatableMarkupToStringRecursive($test_element)),
],
];
$form['test']['render_array'] = [
'#type' => 'details',
'#title' => $this
->t('Render array'),
'#desciption' => $this
->t("Below is the element's final render array."),
'source' => [
'#theme' => 'yamlform_codemirror',
'#type' => 'yaml',
'#code' => Yaml::encode($this
->convertTranslatableMarkupToStringRecursive($this->element)),
],
];
}
$form['key'] = [
'#type' => 'value',
'#value' => 'element',
];
$form['parent_key'] = [
'#type' => 'value',
'#value' => '',
];
$form['properties'] = $this->yamlformElement
->buildConfigurationForm([], $form_state);
$form['properties']['#tree'] = TRUE;
$form['properties']['custom']['#open'] = TRUE;
$form['properties']['element']['type'] = [
'#type' => 'item',
'#title' => $this
->t('Type'),
'#markup' => $type,
'#weight' => -100,
'#parents' => [
'type',
],
];
$form['actions'] = [
'#type' => 'actions',
];
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $this
->t('Test'),
'#button_type' => 'primary',
];
if (\Drupal::request()
->getSession()
->get('yamlform_ui_test_element_' . $type)) {
$form['actions']['reset'] = [
'#type' => 'submit',
'#value' => $this
->t('Reset'),
'#limit_validation_errors' => [],
'#submit' => [
'::reset',
],
];
}
// Clear all messages including 'Unable to display this form...' which is
// generated because we are using a temp form.
// drupal_get_messages();
return $form;
}
/**
* {@inheritdoc}
*/
public function reset(array &$form, FormStateInterface $form_state) {
\Drupal::request()
->getSession()
->remove('yamlform_ui_test_element_' . $this->type);
drupal_set_message($this
->t('Form element %type test has been reset.', [
'%type' => $this->type,
]));
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
// Rebuild is throwing the below error.
// LogicException: Settings can not be serialized.
// $form_state->setRebuild();
// @todo Determine what object is being serialized with form.
// The form element configuration is stored in the 'properties' key in
// the form, pass that through for submission.
$element_form_state = clone $form_state;
$element_form_state
->setValues($form_state
->getValue('properties'));
$properties = $this->yamlformElement
->getConfigurationFormProperties($form, $element_form_state);
// Set #default_value using 'test' element value.
if ($element_value = $form_state
->getValue('element')) {
$properties['#default_value'] = $element_value;
}
\Drupal::request()
->getSession()
->set('yamlform_ui_test_element_' . $this->type, $properties);
drupal_set_message($this
->t('Form element %type test has been updated.', [
'%type' => $this->type,
]));
}
/**
* Determines if the form element key already exists.
*
* @param string $key
* The form element key.
*
* @return bool
* TRUE if the form element key, FALSE otherwise.
*/
public function exists($key) {
return FALSE;
}
/**
* Convert all translatable markup to strings.
*
* This allows element to be serialized.
*
* @param array $element
* An element.
*
* @return array
* The element with all translatable markup converted to strings.
*/
protected function convertTranslatableMarkupToStringRecursive(array $element) {
foreach ($element as $key => $value) {
if ($value instanceof TranslatableMarkup) {
$element[$key] = (string) $value;
}
elseif (is_array($value)) {
$element[$key] = $this
->convertTranslatableMarkupToStringRecursive($value);
}
}
return $element;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 1 |
FormBase:: |
protected | property | The request stack. | 1 |
FormBase:: |
protected | property | The route match. | |
FormBase:: |
protected | function | Retrieves a configuration object. | |
FormBase:: |
protected | function | Gets the config factory for this form. | 1 |
FormBase:: |
private | function | Returns the service container. | |
FormBase:: |
protected | function | Gets the current user. | |
FormBase:: |
protected | function | Gets the request object. | |
FormBase:: |
protected | function | Gets the route match. | |
FormBase:: |
protected | function | Gets the logger for a specific channel. | |
FormBase:: |
protected | function |
Returns a redirect response object for the specified route. Overrides UrlGeneratorTrait:: |
|
FormBase:: |
public | function | Resets the configuration factory. | |
FormBase:: |
public | function | Sets the config factory for this form. | |
FormBase:: |
public | function | Sets the request stack object to use. | |
LinkGeneratorTrait:: |
protected | property | The link generator. | 1 |
LinkGeneratorTrait:: |
protected | function | Returns the link generator. | |
LinkGeneratorTrait:: |
protected | function | Renders a link to a route given a route name and its parameters. | |
LinkGeneratorTrait:: |
public | function | Sets the link generator service. | |
LoggerChannelTrait:: |
protected | property | The logger channel factory service. | |
LoggerChannelTrait:: |
protected | function | Gets the logger for a specific channel. | |
LoggerChannelTrait:: |
public | function | Injects the logger channel factory. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
RedirectDestinationTrait:: |
protected | property | The redirect destination service. | 1 |
RedirectDestinationTrait:: |
protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
RedirectDestinationTrait:: |
protected | function | Returns the redirect destination service. | |
RedirectDestinationTrait:: |
public | function | Sets the redirect destination service. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UrlGeneratorTrait:: |
protected | property | The url generator. | |
UrlGeneratorTrait:: |
protected | function | Returns the URL generator service. | |
UrlGeneratorTrait:: |
public | function | Sets the URL generator service. | |
UrlGeneratorTrait:: |
protected | function | Generates a URL or path for a specific route based on the given parameters. | |
YamlFormDialogTrait:: |
protected | function | Add modal dialog support to a form. | |
YamlFormDialogTrait:: |
protected | function | Is the current request for an AJAX modal dialog. | |
YamlFormDialogTrait:: |
protected | function | Handler dialog redirect after form is submitted. | |
YamlFormDialogTrait:: |
protected | function | Display validation error messages in modal dialog. | |
YamlFormUiElementFormBase:: |
protected | property | The action of the current form. | |
YamlFormUiElementFormBase:: |
protected | property | The form element. | |
YamlFormUiElementFormBase:: |
protected | property | Form element manager. | |
YamlFormUiElementFormBase:: |
protected | property | Form element validator. | |
YamlFormUiElementFormBase:: |
protected | property | The form element's original element type. | |
YamlFormUiElementFormBase:: |
protected | property | The renderer. | |
YamlFormUiElementFormBase:: |
protected | property | The form. | |
YamlFormUiElementFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
YamlFormUiElementFormBase:: |
public | function |
Return the form associated with this form. Overrides YamlFormUiElementFormInterface:: |
|
YamlFormUiElementFormBase:: |
public | function |
Return the form element associated with this form. Overrides YamlFormUiElementFormInterface:: |
|
YamlFormUiElementFormBase:: |
public | function |
Is new element. Overrides YamlFormUiElementFormInterface:: |
|
YamlFormUiElementFormBase:: |
protected | function | Determine if the parent element is a 'yamlform_flexbox'. | |
YamlFormUiElementFormBase:: |
public | function |
Form validation handler. Overrides FormBase:: |
|
YamlFormUiElementFormBase:: |
public | function | Constructs a new YamlFormUiElementFormBase. | |
YamlFormUiElementTestForm:: |
protected | property | Type of form element being tested. | |
YamlFormUiElementTestForm:: |
protected | property | A form element. | |
YamlFormUiElementTestForm:: |
public | function |
Form constructor. Overrides YamlFormUiElementFormBase:: |
|
YamlFormUiElementTestForm:: |
protected | function | Convert all translatable markup to strings. | |
YamlFormUiElementTestForm:: |
public | function |
Determines if the form element key already exists. Overrides YamlFormUiElementFormBase:: |
|
YamlFormUiElementTestForm:: |
public | function |
Returns a unique string identifying the form. Overrides YamlFormUiElementFormBase:: |
|
YamlFormUiElementTestForm:: |
public | function | ||
YamlFormUiElementTestForm:: |
public | function |
Form submission handler. Overrides YamlFormUiElementFormBase:: |