GetUntransformedTextCommand.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\editor\AjaxFile
core/modules/editor/src/Ajax/GetUntransformedTextCommand.phpView source
<?php
namespace Drupal\editor\Ajax;
use Drupal\Core\Ajax\BaseCommand;
/**
* AJAX command to rerender a formatted text field without any 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
Name | Description |
---|---|
GetUntransformedTextCommand | AJAX command to rerender a formatted text field without any transformation filters. |