You are here

function quicktabs_help in Quick Tabs 5

Same name and namespace in other branches
  1. 8.3 quicktabs.module \quicktabs_help()
  2. 6.3 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 7

Code

function quicktabs_help($section) {
  switch ($section) {
    case 'admin/build/quicktabs':
      return t('<p>The Quick Tabs module allows you to create blocks of tabbed content. You can create a block on your site containing up to six tabs with corresponding content. Clicking on the tabs makes the corresponding content display instantly (it uses jQuery). The content for each tabbed section can be either a view or an existing block. 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 Quick Tabs blocks show up in your block listing, ready to be configured and enabled like other blocks.</p>
<p>Multiple Quick Tabs blocks can be placed on a single page.</p>
<p>Visit the <a href="@configuration">Quick Tabs configuration page</a> to choose a style for your Quick Tabs blocks.</p>
<p>Click on the "New QT block" tab below to get started.</p>', array(
        '@configuration' => url('admin/settings/quicktabs'),
      ));
    case 'admin/build/quicktabs/add':
      return '<p>' . t('Here you can create a new Quick Tabs block. Once you have created this block you will be taken to the <a href="@overview">blocks</a> page to configure and enable it.', array(
        '@overview' => url('admin/build/block'),
      )) . '</p>';
  }
}