You are here

public function Test::renderPage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test::renderPage()

Returns a generic page render array for title tests.

Return value

array A render array as expected by drupal_render()

File

core/modules/system/tests/modules/test_page_test/src/Controller/Test.php, line 73
Contains \Drupal\test_page_test\Controller\Test.

Class

Test
Defines a test controller for page titles.

Namespace

Drupal\test_page_test\Controller

Code

public function renderPage() {
  return array(
    '#markup' => 'Content',
  );
}