Mercurial > hg > rr-repo
comparison sites/all/modules/quicktabs/quicktabs.views.inc @ 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 // Id:$ | |
3 | |
4 /** | |
5 * @file Add Views module hooks to Quicktabs. | |
6 */ | |
7 | |
8 /** | |
9 * Implementation of hook_views_plugins(). | |
10 */ | |
11 function quicktabs_views_plugins() { | |
12 $path = drupal_get_path('module', 'quicktabs'); | |
13 | |
14 return array( | |
15 'style' => array( | |
16 'quicktabs' => array( | |
17 'title' => t('Quicktabs'), | |
18 'help' => t('Display view in Quicktabs.'), | |
19 'handler' => 'quicktabs_style_plugin', | |
20 'path' => "$path/includes", | |
21 'theme' => 'quicktabs_view', | |
22 'uses row plugin' => TRUE, | |
23 'uses options' => TRUE, | |
24 'type' => 'normal', | |
25 ), | |
26 ), | |
27 ); | |
28 } |