You are here

public function Framework::filteredHtml in Realistic Dummy Content 3.x

Same name and namespace in other branches
  1. 8.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::filteredHtml()
  2. 7.2 api/src/Framework/Framework.php \Drupal\realistic_dummy_content_api\Framework\Framework::filteredHtml()

Return the default text filter.

Return value

string filtered_html or basic_html... depending on the framework.

Overrides FrameworkInterface::filteredHtml

1 method overrides Framework::filteredHtml()
Drupal8::filteredHtml in api/src/Framework/Drupal8.php
Return the default text filter.

File

api/src/Framework/Framework.php, line 145

Class

Framework
The entry point for the framework.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function filteredHtml() {
  return $this
    ->implementor()
    ->filteredHtml();
}