Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TextProcessed.php

function TextProcessed::setValue

Overrides TypedData::setValue

File

core/modules/text/src/TextProcessed.php, line 71

Class

TextProcessed
A computed property for processing text with a format.

Namespace

Drupal\text

Code

public function setValue($value, $notify = TRUE) {
    $this->processed = $value;
    // Notify the parent of any changes.
    if ($notify && isset($this->parent)) {
        $this->parent
            ->onChange($this->name);
    }
}
RSS feed
Powered by Drupal