class TestCallables

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Render/RendererTest.php \Drupal\Tests\Core\Render\TestCallables
  2. 8.9.x core/tests/Drupal/Tests/Core/Render/RendererTest.php \Drupal\Tests\Core\Render\TestCallables
  3. 11.x core/tests/Drupal/Tests/Core/Render/RendererTest.php \Drupal\Tests\Core\Render\TestCallables

Hierarchy

Expanded class hierarchy of TestCallables

File

core/tests/Drupal/Tests/Core/Render/RendererTest.php, line 1095

Namespace

Drupal\Tests\Core\Render
View source
class TestCallables implements TrustedCallbackInterface {
  public function preRenderPrinted($elements) {
    $elements['#printed'] = TRUE;
    return $elements;
  }
  
  /**
   * {@inheritdoc}
   */
  public static function trustedCallbacks() {
    return [
      'preRenderPrinted',
    ];
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title
TestCallables::preRenderPrinted public function
TestCallables::trustedCallbacks public static function Lists the trusted callbacks provided by the implementing class. Overrides TrustedCallbackInterface::trustedCallbacks
TrustedCallbackInterface::THROW_EXCEPTION constant Untrusted callbacks throw exceptions.
TrustedCallbackInterface::TRIGGER_SILENCED_DEPRECATION constant Untrusted callbacks trigger silenced E_USER_DEPRECATION errors.
TrustedCallbackInterface::TRIGGER_WARNING Deprecated constant Untrusted callbacks trigger E_USER_WARNING errors.

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