function render_example_info in Examples for Developers 7
Simple basic information about the module; an entry point.
Related topics
1 string reference to 'render_example_info'
- render_example_menu in render_example/
render_example.module - Implements hook_menu().
File
- render_example/
render_example.module, line 50 - Demonstrates render arrays.
Code
function render_example_info() {
return t('The render example provides a <ul><li><a href="!arrays">demonstration of of render array usage</a></li><li><a href="!alter">using hook_page_alter()</a> to make various changes on a page.</li></ul>', array(
'!arrays' => url('examples/render_example/arrays'),
'!alter' => url('examples/render_example/altering'),
));
}