function editableviews_views_plugins in Editable Views 7
Implements hook_views_plugins().
File
- ./
editableviews.views.inc, line 10 - editableviews.views.inc Contains Views hooks.
Code
function editableviews_views_plugins() {
$plugins = array();
$plugins['style'] = array(
'editableviews_table' => array(
'title' => t('Editable table'),
'help' => t('Displays a table whose fields can be edited.'),
'handler' => 'editableviews_plugin_style_row_edit_table',
'theme' => 'views_view_table',
'theme path' => drupal_get_path('module', 'views') . '/theme',
'uses row class' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
'help topic' => 'style-table',
),
);
return $plugins;
}