You are here

public function BaseCommand::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Ajax/BaseCommand.php \Drupal\Core\Ajax\BaseCommand::__construct()

Constructs a BaseCommand object.

Parameters

string $command: The name of the command.

string $data: The data to pass on to the client side.

5 calls to BaseCommand::__construct()
EntitySavedCommand::__construct in core/modules/quickedit/src/Ajax/EntitySavedCommand.php
Constructs a EntitySaveCommand object.
FieldFormCommand::__construct in core/modules/quickedit/src/Ajax/FieldFormCommand.php
Constructs a FieldFormCommand object.
FieldFormSavedCommand::__construct in core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php
Constructs a FieldFormSavedCommand object.
FieldFormValidationErrorsCommand::__construct in core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php
Constructs a FieldFormValidationErrorsCommand object.
GetUntransformedTextCommand::__construct in core/modules/editor/src/Ajax/GetUntransformedTextCommand.php
Constructs a GetUntransformedTextCommand object.
5 methods override BaseCommand::__construct()
EntitySavedCommand::__construct in core/modules/quickedit/src/Ajax/EntitySavedCommand.php
Constructs a EntitySaveCommand object.
FieldFormCommand::__construct in core/modules/quickedit/src/Ajax/FieldFormCommand.php
Constructs a FieldFormCommand object.
FieldFormSavedCommand::__construct in core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php
Constructs a FieldFormSavedCommand object.
FieldFormValidationErrorsCommand::__construct in core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php
Constructs a FieldFormValidationErrorsCommand object.
GetUntransformedTextCommand::__construct in core/modules/editor/src/Ajax/GetUntransformedTextCommand.php
Constructs a GetUntransformedTextCommand object.

File

core/lib/Drupal/Core/Ajax/BaseCommand.php, line 32

Class

BaseCommand
Base command that only exists to simplify AJAX commands.

Namespace

Drupal\Core\Ajax

Code

public function __construct($command, $data) {
  $this->command = $command;
  $this->data = $data;
}