Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Controller/TitleResolverTest.php \Drupal\Tests\Core\Controller\TitleCallback
  2. 9 core/tests/Drupal/Tests/Core/Controller/TitleResolverTest.php \Drupal\Tests\Core\Controller\TitleCallback

Provides an example title callback for the testDynamicTitle method above.

Hierarchy

Expanded class hierarchy of TitleCallback

File

core/tests/Drupal/Tests/Core/Controller/TitleResolverTest.php, line 159

Namespace

Drupal\Tests\Core\Controller
View source
class TitleCallback {

  /**
   * Gets the example string.
   *
   * @param string $value
   *   The dynamic value.
   *
   * @return string
   *   Returns the example string.
   */
  public function example($value) {
    return 'test ' . $value;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TitleCallback::example public function Gets the example string.