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