class WebformUiElementEditForm in Webform 6.x
Same name and namespace in other branches
- 8.5 modules/webform_ui/src/Form/WebformUiElementEditForm.php \Drupal\webform_ui\Form\WebformUiElementEditForm
Provides an edit webform for a webform element.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, RedirectDestinationTrait, StringTranslationTrait
- class \Drupal\webform_ui\Form\WebformUiElementFormBase implements WebformUiElementFormInterface uses WebformDialogFormTrait
- class \Drupal\webform_ui\Form\WebformUiElementEditForm
- class \Drupal\webform_ui\Form\WebformUiElementFormBase implements WebformUiElementFormInterface uses WebformDialogFormTrait
Expanded class hierarchy of WebformUiElementEditForm
1 string reference to 'WebformUiElementEditForm'
- webform_ui.routing.yml in modules/
webform_ui/ webform_ui.routing.yml - modules/webform_ui/webform_ui.routing.yml
File
- modules/
webform_ui/ src/ Form/ WebformUiElementEditForm.php, line 16
Namespace
Drupal\webform_ui\FormView source
class WebformUiElementEditForm extends WebformUiElementFormBase {
/**
* {@inheritdoc}
*/
protected $operation = 'update';
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state, WebformInterface $webform = NULL, $key = NULL, $parent_key = NULL, $type = NULL) {
$this->element = $webform
->getElementDecoded($key);
if ($this->element === NULL) {
throw new NotFoundHttpException();
}
// Handler changing element type.
if ($type = $this
->getRequest()
->get('type')) {
$webform_element = $this
->getWebformElementPlugin();
$related_types = $webform_element
->getRelatedTypes($this->element);
if (!isset($related_types[$type])) {
throw new NotFoundHttpException();
}
$this->originalType = $this->element['#type'];
$this->element['#type'] = $type;
}
// Issue: #title is display as modal dialog's title and can't be escaped.
// Workaround: Filter and define @title as safe markup.
$title = WebformElementHelper::getAdminTitle($this->element);
$form['#title'] = $this
->t('Edit @title element', [
'@title' => Markup::create(Xss::filterAdmin($title)),
]);
$this->action = $this
->t('updated');
$form = parent::buildForm($form, $form_state, $webform, $key);
// Delete action.
if (!$form_state
->get('default_value_element')) {
$url = new Url('entity.webform_ui.element.delete_form', [
'webform' => $webform
->id(),
'key' => $key,
]);
$this
->buildDialogDeleteAction($form, $form_state, $url);
}
return $form;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
protected | property | ||
DependencySerializationTrait:: |
public | function | 2 | |
DependencySerializationTrait:: |
public | function | 2 | |
FormBase:: |
protected | property | The config factory. | 3 |
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. | 3 |
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. | |
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. | |
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. | 27 |
MessengerTrait:: |
public | function | Gets the messenger. | 27 |
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. | 4 |
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. | |
WebformAjaxFormTrait:: |
protected | function | Queue announcement with Ajax response. | |
WebformAjaxFormTrait:: |
protected | function | Add Ajax support to a form. | |
WebformAjaxFormTrait:: |
protected | function | Create an AjaxResponse or WebformAjaxResponse object. | |
WebformAjaxFormTrait:: |
protected | function | Get announcements. | |
WebformAjaxFormTrait:: |
protected | function | Get default ajax callback settings. | 1 |
WebformAjaxFormTrait:: |
protected | function | Get redirect URL from the form's state. | |
WebformAjaxFormTrait:: |
protected | function | Get the form's Ajax wrapper id. | 1 |
WebformAjaxFormTrait:: |
protected | function | Determine if Ajax callback is callable. | |
WebformAjaxFormTrait:: |
protected | function | Is the current request for an Ajax modal/dialog. | |
WebformAjaxFormTrait:: |
protected | function | Is the current request for an off canvas dialog. | |
WebformAjaxFormTrait:: |
protected | function | Handle missing Ajax callback. | |
WebformAjaxFormTrait:: |
protected | function | Replace form via an Ajax response. | 1 |
WebformAjaxFormTrait:: |
protected | function | Reset announcements. | |
WebformAjaxFormTrait:: |
protected | function | Set announcements. | |
WebformAjaxFormTrait:: |
public | function | Submit form #ajax callback. | 1 |
WebformAjaxFormTrait:: |
public | function | Validate form #ajax callback. | 1 |
WebformDialogFormTrait:: |
protected | function | Add modal dialog support to a confirm form. | |
WebformDialogFormTrait:: |
protected | function | Build webform dialog delete link. | |
WebformDialogFormTrait:: |
protected | function | Add modal dialog support to a form. | |
WebformDialogFormTrait:: |
public | function |
Cancel form #ajax callback. Overrides WebformAjaxFormTrait:: |
1 |
WebformDialogFormTrait:: |
public | function | Close dialog. | |
WebformDialogFormTrait:: |
protected | function |
Returns if webform is using Ajax. Overrides WebformAjaxFormTrait:: |
1 |
WebformDialogFormTrait:: |
public | function |
Empty submit callback used to only have the submit button to use an #ajax submit callback. Overrides WebformAjaxFormTrait:: |
|
WebformDialogFormTrait:: |
public | function | Validate callback to clear validation errors. | 2 |
WebformUiElementEditForm:: |
protected | property |
The operation of the current webform. Overrides WebformUiElementFormBase:: |
|
WebformUiElementEditForm:: |
public | function |
Form constructor. Overrides WebformUiElementFormBase:: |
|
WebformUiElementFormBase:: |
protected | property | The action of the current webform. | |
WebformUiElementFormBase:: |
protected | property | The webform element. | |
WebformUiElementFormBase:: |
protected | property | The webform element manager. | |
WebformUiElementFormBase:: |
protected | property | The webform element validator. | |
WebformUiElementFormBase:: |
protected | property | The entity field manager. | |
WebformUiElementFormBase:: |
protected | property | The webform element key. | |
WebformUiElementFormBase:: |
protected | property | The webform element's original element type. | |
WebformUiElementFormBase:: |
protected | property | The webform element parent key. | |
WebformUiElementFormBase:: |
protected | property | The renderer. | |
WebformUiElementFormBase:: |
protected | property | The token manager. | |
WebformUiElementFormBase:: |
protected | property | The webform. | |
WebformUiElementFormBase:: |
public | function | Build update default value form elements. | |
WebformUiElementFormBase:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
WebformUiElementFormBase:: |
public | function | Determines if the webform element key already exists. | 1 |
WebformUiElementFormBase:: |
public | function | Get the default key for the current element. | |
WebformUiElementFormBase:: |
public | function | Get updated default value for an element. | |
WebformUiElementFormBase:: |
public | function |
Return the render element associated with this form. Overrides WebformUiElementFormInterface:: |
|
WebformUiElementFormBase:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
1 |
WebformUiElementFormBase:: |
public | function |
Return the render element's key associated with this form. Overrides WebformUiElementFormInterface:: |
|
WebformUiElementFormBase:: |
public | function |
Return the render element's parent key associated with this form. Overrides WebformUiElementFormInterface:: |
|
WebformUiElementFormBase:: |
protected | function | Get the parent key prefix. | |
WebformUiElementFormBase:: |
public | function |
Return the webform associated with this form. Overrides WebformUiElementFormInterface:: |
|
WebformUiElementFormBase:: |
public | function |
Return the webform element associated with this form. Overrides WebformUiElementFormInterface:: |
1 |
WebformUiElementFormBase:: |
public | function |
Is new element. Overrides WebformUiElementFormInterface:: |
|
WebformUiElementFormBase:: |
protected | function | Determine if the parent element is a 'webform_flexbox'. | |
WebformUiElementFormBase:: |
protected | function | Determine if parent key prefixing is enabled. | |
WebformUiElementFormBase:: |
public | function | Set default value to be updated. | |
WebformUiElementFormBase:: |
public | function |
Form submission handler. Overrides FormInterface:: |
1 |
WebformUiElementFormBase:: |
public | function | Default value validation handler. | |
WebformUiElementFormBase:: |
public | function |
Form validation handler. Overrides FormBase:: |