quicktabs.views.inc 602 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Id:$
  3. /**
  4. * @file Add Views module hooks to Quicktabs.
  5. */
  6. /**
  7. * Implementation of hook_views_plugins().
  8. */
  9. function quicktabs_views_plugins() {
  10. $path = drupal_get_path('module', 'quicktabs');
  11. return array(
  12. 'style' => array(
  13. 'quicktabs' => array(
  14. 'title' => t('Quicktabs'),
  15. 'help' => t('Display view in Quicktabs.'),
  16. 'handler' => 'quicktabs_style_plugin',
  17. 'path' => "$path/includes",
  18. 'theme' => 'quicktabs_view',
  19. 'uses row plugin' => TRUE,
  20. 'uses options' => TRUE,
  21. 'type' => 'normal',
  22. ),
  23. ),
  24. );
  25. }