class ReplaceCommand in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Ajax/ReplaceCommand.php \Drupal\Core\Ajax\ReplaceCommand
AJAX command for calling the jQuery replace() method.
The 'insert/replaceWith' command instructs the client to use jQuery's replaceWith() method to replace each element matched matched by the given selector with the given HTML.
This command is implemented by Drupal.AjaxCommands.prototype.insert() defined in misc/ajax.js.
See jQuery replaceWith command
Hierarchy
- class \Drupal\Core\Ajax\InsertCommand implements CommandInterface, CommandWithAttachedAssetsInterface uses CommandWithAttachedAssetsTrait
- class \Drupal\Core\Ajax\ReplaceCommand
Expanded class hierarchy of ReplaceCommand
Related topics
6 files declare their use of ReplaceCommand
- AjaxCommandsTest.php in core/
tests/ Drupal/ Tests/ Core/ Ajax/ AjaxCommandsTest.php - Contains \Drupal\Tests\Core\Ajax\AjaxCommandsTest.
- FormAjaxSubscriber.php in core/
lib/ Drupal/ Core/ Form/ EventSubscriber/ FormAjaxSubscriber.php - Contains \Drupal\Core\Form\EventSubscriber\FormAjaxSubscriber.
- ManagedFile.php in core/
modules/ file/ src/ Element/ ManagedFile.php - Contains \Drupal\file\Element\ManagedFile.
- ViewAjaxController.php in core/
modules/ views/ src/ Controller/ ViewAjaxController.php - Contains \Drupal\views\Controller\ViewAjaxController.
- ViewEditForm.php in core/
modules/ views_ui/ src/ ViewEditForm.php - Contains \Drupal\views_ui\ViewEditForm.
File
- core/
lib/ Drupal/ Core/ Ajax/ ReplaceCommand.php, line 25 - Contains \Drupal\Core\Ajax\ReplaceCommand.
Namespace
Drupal\Core\AjaxView source
class ReplaceCommand extends InsertCommand {
/**
* Implements Drupal\Core\Ajax\CommandInterface:render().
*/
public function render() {
return array(
'command' => 'insert',
'method' => 'replaceWith',
'selector' => $this->selector,
'data' => $this
->getRenderedContent(),
'settings' => $this->settings,
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CommandWithAttachedAssetsTrait:: |
protected | property | The attached assets for this Ajax command. | |
CommandWithAttachedAssetsTrait:: |
public | function | Gets the attached assets. | |
CommandWithAttachedAssetsTrait:: |
protected | function | Processes the content for output. | |
InsertCommand:: |
protected | property | The content for the matched element(s). | |
InsertCommand:: |
protected | property | A CSS selector string. | |
InsertCommand:: |
protected | property | A settings array to be passed to any any attached JavaScript behavior. | |
InsertCommand:: |
public | function | Constructs an InsertCommand object. | |
ReplaceCommand:: |
public | function |
Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides InsertCommand:: |