Skip to content
Snippets Groups Projects

Tabbable remove #3296098

Closed Ivan Berdinsky requested to merge issue/drupal-3296098:tabbable-remove-3296098 into 11.x
Compare and
12 files
+ 123
15
Compare changes
  • Side-by-side
  • Inline
Files
12
@@ -76,6 +76,12 @@ public function __construct($selector, string|\Stringable|null $title, $content,
$title = PlainTextOutput::renderFromHtml($title);
$dialog_options += ['title' => $title];
if (isset($dialog_options['dialogClass'])) {
@trigger_error('Passing $dialog_options[\'dialogClass\'] to OpenDialogCommand::__construct() is deprecated in drupal:10.3.0 and will be removed in drupal:12.0.0. Use $dialog_options[\'classes\'] instead. See https://www.drupal.org/node/3440844', E_USER_DEPRECATED);
$dialog_options['classes']['ui-dialog'] = $dialog_options['dialogClass'];
unset($dialog_options['dialogClass']);
}
$this->selector = $selector;
$this->content = $content;
$this->dialogOptions = $dialog_options;
Loading