Drupal tabs.module README.txt ============================================================================== Created as part of a project sponsored by CivicSpace Labs, this module provides methods for client-side tabbed pages, using the jQuery tabs plugin by Klaus Hartl, http://stilbuero.de/tabs. NOTE: These instructions still need updating for 5.0. Requirements ------------------------------------------------------------------------------ This module is written for Drupal 5.0+. Installation ------------------------------------------------------------------------------ Create a directory modules/tabs and copy all the module's files into it. Enable the module via the administer modules page. Testing ------------------------------------------------------------------------------ To test the module, navigate to the page tabs/example. Developer usage ----------------------------------------------------------------------------- Sample usage: $tabs = array(); $tabs[] = array( '#title' => t('One'), '#content' => t('First tab content.'), ); $tabs[] = array( '#title' => t('Two'), '#content' => t('Second tab content.'), ); $tabs[] = array( '#title' => t('Three'), '#content' => t('Third tab content.'), ); return theme('tabs_tabset', $tabs);