GetUntransformedTextCommand.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\editor\AjaxFile
-
core/
modules/ editor/ src/ Ajax/ GetUntransformedTextCommand.php
View source
<?php
namespace Drupal\editor\Ajax;
use Drupal\Core\Ajax\BaseCommand;
@trigger_error('The ' . __NAMESPACE__ . '\\GetUntransformedTextCommand is deprecated in drupal:9.5.0 and is removed from drupal:10.0.0. There is no replacement. See https://www.drupal.org/node/3271653', E_USER_DEPRECATED);
/**
* Rerenders a formatted text field without any transformation filters.
*
* @deprecated in drupal:9.5.0 and is removed from drupal:10.0.0.
* There is no replacement.
*
* @see http://www.drupal.org/node/3271653
*/
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 | in drupal:9.5.0 and is removed from drupal:10.0.0. There is no replacement. |
Rerenders a formatted text field without any transformation filters. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.