entity_reference_tree-8.x-1.x-dev/src/Ajax/OpenEntityReferenceTreeModalDialogCommand.php
src/Ajax/OpenEntityReferenceTreeModalDialogCommand.php
<?php
namespace Drupal\entity_reference_tree\Ajax;
use Drupal\Core\Ajax\OpenModalDialogCommand;
class OpenEntityReferenceTreeModalDialogCommand extends OpenModalDialogCommand {
/**
* {@inheritdoc}
*/
public function __construct($title, $content, array $dialog_options = [], $settings = NULL) {
parent::__construct($title, $content, $dialog_options, $settings);
$this->selector = '#entity-reference-tree-modal';
}
}
