CloseModalDialog.php in Forena Reports 8
File
src/FrxPlugin/AjaxCommand/CloseModalDialog.php
View source
<?php
namespace Drupal\forena\FrxPlugin\AjaxCommand;
use Drupal\Core\Ajax\CloseDialogCommand;
use Drupal\Core\Ajax\CloseModalDialogCommand;
class CloseModalDialog extends AjaxCommandBase {
public function commandFromSettings(array $settings) {
$selector = $this
->getSetting($settings, 'selector');
$persist = $this
->getSetting($settings, 'persist') !== TRUE;
return new CloseModalDialogCommand($selector, $persist);
}
}