You are here

function _vertical_tabs_example_explanation in Examples for Developers 6

Same name and namespace in other branches
  1. 7 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
Shows how to integrate your custom node options with vertical tabs module in Drupal 6. This example does not cover how to save / load custom setting, and only deals with elements visibility.

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'),
  ));
}