class PrependCommand

AJAX command for calling the jQuery insert() method.

The 'insert/prepend' command instructs the client to use jQuery's prepend() method to prepend the given HTML content to the inside each element matched by the given selector.

This command is implemented by Drupal.ajax.prototype.commands.insert() defined in misc/ajax.js.

Hierarchy

Expanded class hierarchy of PrependCommand

See also

http://docs.jquery.com/Manipulation/prepend#content

1 file declares its use of PrependCommand
AjaxCommandsUnitTest.php in drupal/core/modules/system/lib/Drupal/system/Tests/Ajax/AjaxCommandsUnitTest.php
Definition of Drupal\system\Tests\Ajax\AjaxCommandsUnitTest.

File

drupal/core/lib/Drupal/Core/Ajax/PrependCommand.php, line 24
Definition of Drupal\Core\Ajax\PrependCommand.

Namespace

Drupal\Core\Ajax
View source
class PrependCommand extends InsertCommand {

  /**
   * Implements Drupal\Core\Ajax\CommandInterface:render().
   */
  public function render() {
    return array(
      'command' => 'insert',
      'method' => 'prepend',
      'selector' => $this->selector,
      'data' => $this->html,
      'settings' => $this->settings,
    );
  }

}

Members

Name Modifierssort descending Type Description Overrides
InsertCommand::$selector protected property A CSS selector string.
InsertCommand::$html protected property The HTML content that will replace the matched element(s).
InsertCommand::$settings protected property A settings array to be passed to any any attached JavaScript behavior.
PrependCommand::render public function Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides InsertCommand::render
InsertCommand::__construct public function Constructs an InsertCommand object.