function views_table_highlighter_views_plugins in Views Table Highlighter 6
Same name and namespace in other branches
- 7 views_table_highlighter.views.inc \views_table_highlighter_views_plugins()
@file Views API.
File
- ./
views_table_highlighter.views.inc, line 8 - Views API.
Code
function views_table_highlighter_views_plugins() {
return array(
'style' => array(
'table_highlighter' => array(
'title' => t('Table Highlighter'),
'help' => t('Highlights table rows based on simple PHP code.'),
'handler' => 'views_table_highlighter_plugin_style',
'parent' => 'table',
'uses row plugin' => FALSE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'normal',
'theme' => 'views_view_table',
'even empty' => TRUE,
),
),
);
}