function views_secondary_row_theme in Views Secondary Row 8
Same name and namespace in other branches
- 7 views_secondary_row.module \views_secondary_row_theme()
Implements hook_theme().
Register views theming functions and those that are defined via views plugin definitions.
File
- ./
views_secondary_row.module, line 14 - Adds a new Views Row style.
Code
function views_secondary_row_theme($existing, $type, $theme, $path) {
$theme_info = [
'views_secondary_row_style_plugin_table' => [
'render element' => 'form',
'file' => 'views_secondary_row.theme.inc',
],
'views_secondary_row_view_table' => [
'render element' => 'form',
'file' => 'views_secondary_row.theme.inc',
],
];
return $theme_info;
}