Mercurial > hg > rr-repo
view sites/all/modules/quicktabs/quicktabs.views.inc @ 3:b28be78d8160
alpha1.0 version
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 19 Sep 2013 10:33:07 +0100 |
parents | b74b41bb73f0 |
children |
line wrap: on
line source
<?php // Id:$ /** * @file Add Views module hooks to Quicktabs. */ /** * Implementation of hook_views_plugins(). */ function quicktabs_views_plugins() { $path = drupal_get_path('module', 'quicktabs'); return array( 'style' => array( 'quicktabs' => array( 'title' => t('Quicktabs'), 'help' => t('Display view in Quicktabs.'), 'handler' => 'quicktabs_style_plugin', 'path' => "$path/includes", 'theme' => 'quicktabs_view', 'uses row plugin' => TRUE, 'uses options' => TRUE, 'type' => 'normal', ), ), ); }