views_secondary_row.module in Views Secondary Row 8
Same filename and directory in other branches
Adds a new Views Row style.
File
views_secondary_row.moduleView source
<?php
/**
* @file
* Adds a new Views Row style.
*/
/**
* Implements hook_theme().
*
* Register views theming functions and those that are defined via views plugin
* definitions.
*/
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;
}
Functions
Name | Description |
---|---|
views_secondary_row_theme | Implements hook_theme(). |