<?php/**
* @file
* Definition of Drupal\Core\Ajax\InsertCommand.
*/namespaceDrupal\Core\Ajax;
useDrupal\Core\Ajax\InsertCommand;
/**
* An AJAX command for calling the jQuery before() method.
*
* The 'insert/before' command instructs the client to use jQuery's before()
* method to insert the given HTML content before each of elements matched by
* the given selector.
*
* This command is implemented by Drupal.AjaxCommands.prototype.insert()
* defined in misc/ajax.js.
*
* @see http://docs.jquery.com/Manipulation/before#content
*/class BeforeCommandextends InsertCommand {
/**
* Implements Drupal\Core\Ajax\CommandInterface:render().
*/
public functionrender() {
returnarray(
'command' => 'insert',
'method' => 'before',
'selector' => $this->selector,
'data' => $this->html,
'settings' => $this->settings,
);
}
}