comparison core/lib/Drupal/Core/Ajax/PrependCommand.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 }