1 menu_example.module | _menu_example_basic_instructions($content = NULL) |
Page callback for the simplest introduction menu entry.
Parameters
string $content: Some content passed in.
Related topics
File
- modules/
examples/ menu_example/ menu_example.module, line 329 - Hook implementations for the Menu Example module.
Code
function _menu_example_basic_instructions($content = NULL) {
$base_content = t(
'This is the base page of the Menu Example. To view the full range of example menu links created by Menu Example, place the Menu example menu block into a layout region. There are a number of examples there, from the most basic (like this one) to extravagant mappings of loaded placeholder arguments. Enjoy!');
return '<div>' . $base_content . '</div><br /><div>' . $content . '</div>';
}