function Editor::getFilterFormat

Same name and namespace in other branches
  1. 9 core/modules/editor/src/Entity/Editor.php \Drupal\editor\Entity\Editor::getFilterFormat()
  2. 10 core/modules/editor/src/Entity/Editor.php \Drupal\editor\Entity\Editor::getFilterFormat()
  3. 11.x core/modules/editor/src/Entity/Editor.php \Drupal\editor\Entity\Editor::getFilterFormat()

Overrides EditorInterface::getFilterFormat

File

core/modules/editor/src/Entity/Editor.php, line 128

Class

Editor
Defines the configured text editor entity.

Namespace

Drupal\editor\Entity

Code

public function getFilterFormat() {
    if (!$this->filterFormat) {
        $this->filterFormat = \Drupal::entityTypeManager()->getStorage('filter_format')
            ->load($this->format);
    }
    return $this->filterFormat;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.