You are here

views_secondary_row.module in Views Secondary Row 8

Same filename and directory in other branches
  1. 7 views_secondary_row.module

Adds a new Views Row style.

File

views_secondary_row.module
View 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

Namesort descending Description
views_secondary_row_theme Implements hook_theme().