public function Test::staticTitle in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::staticTitle()
Renders a page.
Return value
array A render array as expected by drupal_render().
1 string reference to 'Test::staticTitle'
- test_page_test.routing.yml in core/
modules/ system/ tests/ modules/ test_page_test/ test_page_test.routing.yml - core/modules/system/tests/modules/test_page_test/test_page_test.routing.yml
File
- core/
modules/ system/ tests/ modules/ test_page_test/ src/ Controller/ Test.php, line 36 - Contains \Drupal\test_page_test\Controller\Test.
Class
- Test
- Defines a test controller for page titles.
Namespace
Drupal\test_page_test\ControllerCode
public function staticTitle() {
$build = array();
$build['#markup'] = 'Hello Drupal';
return $build;
}