class OpenModalWizardCommand
Hierarchy
- class \Drupal\Core\Ajax\OpenDialogCommand extends \Drupal\Core\Ajax\CommandInterface, \Drupal\Core\Ajax\CommandWithAttachedAssetsInterface uses \Drupal\Core\Ajax\CommandWithAttachedAssetsTrait
- class \Drupal\Core\Ajax\OpenModalDialogCommand implements \Drupal\Core\Ajax\OpenDialogCommand
- class \Drupal\ctools\Ajax\OpenModalWizardCommand implements \Drupal\Core\Ajax\OpenModalDialogCommand
- class \Drupal\Core\Ajax\OpenModalDialogCommand implements \Drupal\Core\Ajax\OpenDialogCommand
Expanded class hierarchy of OpenModalWizardCommand
1 file declares its use of OpenModalWizardCommand
- FormWizardBase.php in src/
Wizard/ FormWizardBase.php
File
-
src/
Ajax/ OpenModalWizardCommand.php, line 10
Namespace
Drupal\ctools\AjaxView source
class OpenModalWizardCommand extends OpenModalDialogCommand {
/**
*
*/
public function __construct($object, $tempstore_id, array $parameters = [], array $dialog_options = [], $settings = NULL) {
// Instantiate the wizard class properly.
$parameters += [
'tempstore_id' => $tempstore_id,
'machine_name' => NULL,
'step' => NULL,
];
$form = \Drupal::service('ctools.wizard.factory')->getWizardForm($object, $parameters, TRUE);
$title = $form['#title'] ?? '';
$content = $form;
parent::__construct($title, $content, $dialog_options, $settings);
}
}