views_mediatable.views.inc in Views MediaTable 7
File
views/views_mediatable.views.inc
View source
<?php
function views_mediatable_views_plugins() {
$theme_path = drupal_get_path('module', 'views_mediatable') . '/views';
return array(
'module' => 'views_mediatable',
'style' => array(
'mediatable' => array(
'title' => t('MediaTable Table'),
'help' => t('Adds the ability to have responsive options to the table display.'),
'path' => $theme_path,
'theme path' => $theme_path,
'handler' => 'views_mediatable_plugin_style_table',
'parent' => 'table',
'theme' => 'views_mediatable_view',
'uses row plugin' => FALSE,
'uses row class' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
),
),
);
}