class UrlEmbedDialog in URL Embed 8
Provides a form to embed URLs.
Hierarchy
- class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, MessengerTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTrait
- class \Drupal\url_embed\Form\UrlEmbedDialog uses UrlEmbedHelperTrait
Expanded class hierarchy of UrlEmbedDialog
1 string reference to 'UrlEmbedDialog'
File
- src/
Form/ UrlEmbedDialog.php, line 26 - Contains \Drupal\url_embed\Form\UrlEmbedDialog.
Namespace
Drupal\url_embed\FormView source
class UrlEmbedDialog extends FormBase {
use UrlEmbedHelperTrait;
/**
* The form builder.
*
* @var \Drupal\Core\Form\FormBuilderInterface
*/
protected $formBuilder;
/**
* Constructs a UrlEmbedDialog object.
*
* @param \Drupal\url_embed\UrlEmbedInterface $url_embed
* The URL embed service.
* @param \Drupal\Core\Form\FormBuilderInterface $form_builder
* The Form Builder.
*/
public function __construct(UrlEmbedInterface $url_embed, FormBuilderInterface $form_builder) {
$this
->setUrlEmbed($url_embed);
$this->formBuilder = $form_builder;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('url_embed'), $container
->get('form_builder'));
}
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'url_embed_dialog';
}
/**
* {@inheritdoc}
*
* @param \Drupal\editor\EditorInterface $editor
* The editor to which this dialog corresponds.
* @param \Drupal\embed\EmbedButtonInterface $embed_button
* The URL button to which this dialog corresponds.
*/
public function buildForm(array $form, FormStateInterface $form_state, EditorInterface $editor = NULL, EmbedButtonInterface $embed_button = NULL) {
$values = $form_state
->getValues();
$input = $form_state
->getUserInput();
// Set URL button element in form state, so that it can be used later in
// validateForm() function.
$form_state
->set('embed_button', $embed_button);
$form_state
->set('editor', $editor);
// Initialize URL element with form attributes, if present.
$url_element = empty($values['attributes']) ? array() : $values['attributes'];
$url_element += empty($input['attributes']) ? array() : $input['attributes'];
// The default values are set directly from \Drupal::request()->request,
// provided by the editor plugin opening the dialog.
if (!$form_state
->get('url_element')) {
$form_state
->set('url_element', isset($input['editor_object']) ? $input['editor_object'] : array());
}
$url_element += $form_state
->get('url_element');
$url_element += array(
'data-embed-url' => '',
'data-url-provider' => '',
);
$form_state
->set('url_element', $url_element);
$form['#tree'] = TRUE;
$form['#attached']['library'][] = 'editor/drupal.editor.dialog';
$form['#prefix'] = '<div id="url-embed-dialog-form">';
$form['#suffix'] = '</div>';
$form['attributes']['data-embed-url'] = array(
'#type' => 'textfield',
'#title' => 'URL',
'#default_value' => $url_element['data-embed-url'],
'#required' => TRUE,
);
try {
if (!empty($url_element['data-embed-url']) && ($info = $this
->urlEmbed()
->getEmbed($url_element['data-embed-url']))) {
$url_element['data-url-provider'] = $info
->getProviderName();
}
} catch (\Exception $e) {
watchdog_exception('url_embed', $e);
}
$form['attributes']['data-url-provider'] = array(
'#type' => 'value',
'#value' => $url_element['data-url-provider'],
);
$form['attributes']['data-embed-button'] = array(
'#type' => 'value',
'#value' => $embed_button
->id(),
);
$form['attributes']['data-entity-label'] = array(
'#type' => 'value',
'#value' => $embed_button
->label(),
);
$form['actions'] = array(
'#type' => 'actions',
);
$form['actions']['save_modal'] = array(
'#type' => 'submit',
'#value' => $this
->t('Embed'),
'#button_type' => 'primary',
// No regular submit-handler. This form only works via JavaScript.
'#submit' => array(),
'#ajax' => array(
'callback' => '::submitForm',
'event' => 'click',
),
);
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$response = new AjaxResponse();
$values = $form_state
->getValues();
// Display errors in form, if any.
if ($form_state
->hasAnyErrors()) {
unset($form['#prefix'], $form['#suffix']);
$form['status_messages'] = array(
'#type' => 'status_messages',
'#weight' => -10,
);
$response
->addCommand(new HtmlCommand('#url-embed-dialog-form', $form));
}
else {
$response
->addCommand(new EditorDialogSave($values));
$response
->addCommand(new CloseModalDialogCommand());
}
return $response;
}
}
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. | |
FormBase:: |
public | function |
Form validation handler. Overrides FormInterface:: |
62 |
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. | |
UrlEmbedDialog:: |
protected | property | The form builder. | |
UrlEmbedDialog:: |
public | function |
Overrides FormInterface:: |
|
UrlEmbedDialog:: |
public static | function |
Instantiates a new instance of this class. Overrides FormBase:: |
|
UrlEmbedDialog:: |
public | function |
Returns a unique string identifying the form. Overrides FormInterface:: |
|
UrlEmbedDialog:: |
public | function |
Form submission handler. Overrides FormInterface:: |
|
UrlEmbedDialog:: |
public | function | Constructs a UrlEmbedDialog object. | |
UrlEmbedHelperTrait:: |
protected | property | The module handler service. | |
UrlEmbedHelperTrait:: |
protected | property | The URL embed service. | |
UrlEmbedHelperTrait:: |
protected | function | Returns the module handler. | |
UrlEmbedHelperTrait:: |
public | function | Sets the module handler service. | |
UrlEmbedHelperTrait:: |
public | function | Sets the URL embed service. | |
UrlEmbedHelperTrait:: |
protected | function | Returns the URL embed service. | |
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. |