GetUntransformedTextCommand.php

Same filename in this branch
  1. 9 core/modules/editor/src/Ajax/GetUntransformedTextCommand.php
Same filename in other branches
  1. 8.9.x core/modules/editor/src/Ajax/GetUntransformedTextCommand.php

Namespace

Drupal\quickedit\Ajax

File

core/modules/quickedit/src/Ajax/GetUntransformedTextCommand.php

View source
<?php

namespace Drupal\quickedit\Ajax;

use Drupal\Core\Ajax\BaseCommand;

/**
 * AJAX command to rerender formatted text field without transformation filters.
 */
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);
    }

}

Classes

Title Deprecated Summary
GetUntransformedTextCommand AJAX command to rerender formatted text field without transformation filters.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.