function collageformatter_views_plugins in Collage Formatter 7
Implements hook_views_plugins().
File
- ./
collageformatter.views.inc, line 10 - Views plugins declaration for the Collage Formatter module.
Code
function collageformatter_views_plugins() {
return array(
'style' => array(
'collage' => array(
'title' => t('Collage'),
'handler' => 'collageformatter_plugin_style_collage',
//'path' => drupal_get_path('module', 'collageformatter') . '/views',
'uses options' => TRUE,
//'help' => t(''),
//'theme' => '',
//'js' => array(),
'type' => 'normal',
'uses row plugin' => FALSE,
'uses row class' => FALSE,
'uses fields' => TRUE,
'uses grouping' => FALSE,
'even empty' => FALSE,
),
),
);
}