function InvokeCommand::__construct
Same name in other branches
- 9 core/lib/Drupal/Core/Ajax/InvokeCommand.php \Drupal\Core\Ajax\InvokeCommand::__construct()
- 10 core/lib/Drupal/Core/Ajax/InvokeCommand.php \Drupal\Core\Ajax\InvokeCommand::__construct()
- 11.x core/lib/Drupal/Core/Ajax/InvokeCommand.php \Drupal\Core\Ajax\InvokeCommand::__construct()
Constructs an InvokeCommand object.
Parameters
string $selector: A jQuery selector.
string $method: The name of a jQuery method to invoke.
array $arguments: An optional array of arguments to pass to the method.
File
-
core/
lib/ Drupal/ Core/ Ajax/ InvokeCommand.php, line 54
Class
- InvokeCommand
- AJAX command for invoking an arbitrary jQuery method.
Namespace
Drupal\Core\AjaxCode
public function __construct($selector, $method, array $arguments = []) {
$this->selector = $selector;
$this->method = $method;
$this->arguments = $arguments;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.