function _vertical_tabs_example_explanation
Simple explanation page.
Related topics
1 string reference to '_vertical_tabs_example_explanation'
- vertical_tabs_example_menu in vertical_tabs_example/
vertical_tabs_example.module - Implements hook_menu().
File
-
vertical_tabs_example/
vertical_tabs_example.module, line 109
Code
function _vertical_tabs_example_explanation() {
return t("<p>The Vertical Tabs Example shows how a custom module can add a vertical tab to a node edit form, and support its summary field with JavaScript.</p><p>To see the effects of this module, <a href='!node_add'>add a piece of content</a> and look at the set of tabs at the bottom. We've added one called 'Example vertical tab.'</p>", array(
'!node_add' => url('node/add'),
));
}