FilterProcessResult::__construct

public FilterProcessResult::__construct($processed_text)

Constructs a FilterProcessResult object.

Parameters

string $processed_text: The text as processed by a text filter.

File

core/modules/filter/src/FilterProcessResult.php, line 80

Class

FilterProcessResult
Used to return values from a text filter plugin's processing method.

Namespace

Drupal\filter

Code

public function __construct($processed_text) {
  $this->processedText = $processed_text;
}
doc_Drupal
2016-10-29 09:14:52
Comments
Leave a Comment

Please login to continue.