Mercurial > hg > rr-repo
view sites/all/modules/quicktabs/quicktabs.views.inc @ 11:b0ee71395280
deleted .DS_Store files
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Mon, 28 Oct 2013 16:12:13 +0000 |
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', ), ), ); }