class GetUntransformedTextCommand in Drupal 10
AJAX command to rerender formatted text field without transformation filters.
Hierarchy
- class \Drupal\quickedit\Ajax\GetUntransformedTextCommand extends \Drupal\Core\Ajax\BaseCommand
Expanded class hierarchy of GetUntransformedTextCommand
1 file declares its use of GetUntransformedTextCommand
- QuickEditController.php in core/modules/ quickedit/ src/ QuickEditController.php 
File
- core/modules/ quickedit/ src/ Ajax/ GetUntransformedTextCommand.php, line 10 
Namespace
Drupal\quickedit\AjaxView 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);
  }
}