1 page_example.module page_example_simple()

Constructs a simple page.

The simple page callback, mapped to the path 'examples/page_example/simple'.

Page callbacks return a renderable array with the content area of the page. The theme system will later render and surround the content in the appropriate blocks, navigation, and styling.

If you do not want to use the theme system (for example for outputting an image or XML), you should print the content yourself and not return anything.

Related topics

File

modules/examples/page_example/page_example.module, line 137
Hook implementations for the Page Example module.

Code

function page_example_simple() {
  return array('#markup' => '<p>' . t('Simple page: The quick brown fox jumps over the lazy dog.') . '</p>');
}