ExampleRenderable.php in Zircon Profile 8.0
Same filename and directory in other branches
Namespace
Drupal\twig_theme_testFile
core/modules/system/tests/modules/twig_theme_test/src/ExampleRenderable.phpView source
<?php
/**
* @file
* Contains \Drupal\twig_theme_test\ExampleRenderable.
*/
namespace Drupal\twig_theme_test;
use Drupal\Core\Render\RenderableInterface;
/**
* Provides an example implementation of the RenderableInterface.
*/
class ExampleRenderable implements RenderableInterface {
/**
* {@inheritdoc}
*/
public function toRenderable() {
return [
'#markup' => 'Example markup',
];
}
}
Classes
Name | Description |
---|---|
ExampleRenderable | Provides an example implementation of the RenderableInterface. |