Mercurial > hg > rr-repo
annotate 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 |
rev | line source |
---|---|
danielebarchiesi@2 | 1 <?php |
danielebarchiesi@2 | 2 |
danielebarchiesi@2 | 3 /** |
danielebarchiesi@2 | 4 * Alter the Quicktabs instance before it gets rendered. |
danielebarchiesi@2 | 5 * |
danielebarchiesi@2 | 6 * @param &$quicktabs |
danielebarchiesi@2 | 7 * A loaded Quicktabs object, either from the database or from code. |
danielebarchiesi@2 | 8 */ |
danielebarchiesi@2 | 9 function hook_quicktabs_alter(&$quicktabs) { |
danielebarchiesi@2 | 10 } |
danielebarchiesi@2 | 11 |
danielebarchiesi@2 | 12 /** |
danielebarchiesi@2 | 13 * This hook allows other modules to create additional tab styles for |
danielebarchiesi@2 | 14 * the quicktabs module. |
danielebarchiesi@2 | 15 * |
danielebarchiesi@2 | 16 * @return array |
danielebarchiesi@2 | 17 * An array of key => value pairs suitable for inclusion as the #options in a |
danielebarchiesi@2 | 18 * select or radios form element. Each key must be the location of a css |
danielebarchiesi@2 | 19 * file for a quick tabs style. Each value should be the name of the style. |
danielebarchiesi@2 | 20 */ |
danielebarchiesi@2 | 21 function hook_quicktabs_tabstyles() { |
danielebarchiesi@2 | 22 } |
danielebarchiesi@2 | 23 |