You are here

class GetUntransformedTextCommand in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/editor/src/Ajax/GetUntransformedTextCommand.php \Drupal\editor\Ajax\GetUntransformedTextCommand

AJAX command to rerender a formatted text field without any transformation filters.

Hierarchy

Expanded class hierarchy of GetUntransformedTextCommand

1 file declares its use of GetUntransformedTextCommand
EditorController.php in core/modules/editor/src/EditorController.php

File

core/modules/editor/src/Ajax/GetUntransformedTextCommand.php, line 11

Namespace

Drupal\editor\Ajax
View source
class GetUntransformedTextCommand extends BaseCommand {

  /**
   * Constructs a GetUntransformedTextCommand object.
   *
   * @param string $data
   *   The data to pass on to the client side.
   */
  public function __construct($data) {
    parent::__construct('editorGetUntransformedText', $data);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BaseCommand::$command protected property The name of the command.
BaseCommand::$data protected property The data to pass on to the client side.
BaseCommand::render public function Return an array to be run through json_encode and sent to the client. Overrides CommandInterface::render 1
GetUntransformedTextCommand::__construct public function Constructs a GetUntransformedTextCommand object. Overrides BaseCommand::__construct