Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / lib / Drupal / Core / Ajax / HtmlCommand.php
1 <?php
2
3 namespace Drupal\Core\Ajax;
4
5 /**
6  * AJAX command for calling the jQuery html() method.
7  *
8  * The 'insert/html' command instructs the client to use jQuery's html() method
9  * to set the HTML content of each element matched by the given selector while
10  * leaving the outer tags intact.
11  *
12  * This command is implemented by Drupal.AjaxCommands.prototype.insert()
13  * defined in misc/ajax.js.
14  *
15  * @see http://docs.jquery.com/Attributes/html#val
16  *
17  * @ingroup ajax
18  */
19 class HtmlCommand extends InsertCommand {
20
21   /**
22    * Implements Drupal\Core\Ajax\CommandInterface:render().
23    */
24   public function render() {
25
26     return [
27       'command' => 'insert',
28       'method' => 'html',
29       'selector' => $this->selector,
30       'data' => $this->getRenderedContent(),
31       'settings' => $this->settings,
32     ];
33   }
34
35 }