You are here

function hook_quicktabs_tabstyles in Quick Tabs 7.3

This hook allows other modules to create additional tab styles for the quicktabs module.

Return value

array An array of key => value pairs suitable for inclusion as the #options in a select or radios form element. Each key must be the location of a css file for a quick tabs style. Each value should be the name of the style.

1 function implements hook_quicktabs_tabstyles()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

quicktabs_tabstyles_quicktabs_tabstyles in quicktabs_tabstyles/quicktabs_tabstyles.module
Implements hook_quicktabs_tabstyles().
4 invocations of hook_quicktabs_tabstyles()
quicktabs_style_plugin::options_form in includes/quicktabs_style_plugin.inc
Provide a form to edit options for this plugin.
quicktabs_tabstyles_styles in quicktabs_tabstyles/quicktabs_tabstyles.module
Callback function for admin/structure/quicktabs/styles. The style chooser form.
_quicktabs_admin_main_form in ./quicktabs.admin.inc
The main section of admin page.
_quicktabs_get_style_css in ./quicktabs.module
Helper function to get the css file for given style.

File

./quicktabs.api.php, line 21

Code

function hook_quicktabs_tabstyles() {
}