You are here

function vff_theme in Field Formatter Template 8.2

Same name and namespace in other branches
  1. 8 modules/vff/vff.module \vff_theme()

Implements hook_theme().

Register views theming functions and those that are defined via views plugin definitions.

File

modules/vff/vff.module, line 45
Contains vff.module.

Code

function vff_theme($existing, $type, $theme, $path) {
  return [
    'views_view__vff' => [
      'variables' => [],
      'template' => 'views-view--vff',
      'base hook' => 'views_view',
    ],
  ];
}