You are here

function quicktabs_help in Quick Tabs 6.3

Same name and namespace in other branches
  1. 8.3 quicktabs.module \quicktabs_help()
  2. 5 quicktabs.module \quicktabs_help()
  3. 6 quicktabs.module \quicktabs_help()
  4. 6.2 quicktabs.module \quicktabs_help()
  5. 7.3 quicktabs.module \quicktabs_help()
  6. 7.2 quicktabs.module \quicktabs_help()

Implementation of hook_help().

File

./quicktabs.module, line 6

Code

function quicktabs_help($path, $arg) {
  switch ($path) {
    case 'admin/build/quicktabs':
      return t('<p>The Quick Tabs module allows you to create blocks of tabbed content. Clicking on the tabs makes the corresponding content display instantly (it uses jQuery). The content for each tabbed section can be either a node, view, block or another quicktab. It is an ideal way to do something like the Most Popular / Most Emailed stories tabs you see on many news websites.</p>
<p>Once created, the quicktab block show up in your block listing, ready to be configured and enabled like other blocks. Multiple quicktabs can be placed on a single page.</p>
<p>Visit the <a href="@configuration">configuration page</a> to see the available styles and select the default style for your quicktabs.</p>', array(
        '@configuration' => url('admin/settings/quicktabs'),
      ));
    case 'admin/build/quicktabs/add':
      return '<p>' . t('Here you can create a new quicktab block. Once you have created this block you can configure and enable it on the <a href="@overview">blocks</a> page.', array(
        '@overview' => url('admin/build/block'),
      )) . '</p>';
  }
}