ExampleRenderable.php in Drupal 10
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
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. |