comparison sites/all/modules/quicktabs/quicktabs.api.php @ 2:b74b41bb73f0

-- Google analytics module
author danieleb <danielebarchiesi@me.com>
date Thu, 22 Aug 2013 17:22:54 +0100
parents
children
comparison
equal deleted inserted replaced
1:67ce89da90df 2:b74b41bb73f0
1 <?php
2
3 /**
4 * Alter the Quicktabs instance before it gets rendered.
5 *
6 * @param &$quicktabs
7 * A loaded Quicktabs object, either from the database or from code.
8 */
9 function hook_quicktabs_alter(&$quicktabs) {
10 }
11
12 /**
13 * This hook allows other modules to create additional tab styles for
14 * the quicktabs module.
15 *
16 * @return array
17 * An array of key => value pairs suitable for inclusion as the #options in a
18 * select or radios form element. Each key must be the location of a css
19 * file for a quick tabs style. Each value should be the name of the style.
20 */
21 function hook_quicktabs_tabstyles() {
22 }
23