quicktabs.api.php 613 B

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