You are here

function content_export_yaml_theme in Content Export YAML 8

Implements hook_theme().

File

./content_export_yaml.module, line 39
Contains content_export.module.

Code

function content_export_yaml_theme() {
  $theme = [];
  $theme['view_template_item'] = [
    'variables' => [
      'item' => [],
    ],
  ];
  return $theme;
}