function _vertical_tabs_example_explanation

Same name in other branches
  1. 7.x-1.x vertical_tabs_example/vertical_tabs_example.module \_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 for a simple explanation page.

File

vertical_tabs_example/vertical_tabs_example.module, line 98

Code

function _vertical_tabs_example_explanation() {
    return t("The Vertical Tabs Example shows how a custom module can best support vertical tabs. To see the effects of this module, look at the <a href='!node_add'>node/add</a> form", array(
        '!node_add' => url('node/add'),
    ));
}