public FilterProcessResult::setProcessedText($processed_text)
Sets the processed text.
Parameters
string $processed_text: The text as processed by a text filter.
Return value
$this
File
- core/modules/filter/src/FilterProcessResult.php, line 110
Class
- FilterProcessResult
- Used to return values from a text filter plugin's processing method.
Namespace
Drupal\filter
Code
public function setProcessedText($processed_text) { $this->processedText = $processed_text; return $this; }
Please login to continue.