You are here

function entity_print_views_theme in Entity Print 7

Implements hook_theme().

File

modules/entity_print_views/entity_print_views.module, line 60
Entity Print Views module file.

Code

function entity_print_views_theme($existing, $type, $theme, $path) {
  return array(
    'entity_print_views' => array(
      'path' => $path . '/templates',
      'template' => 'entity-print-views',
      'variables' => array(
        'view_html' => NULL,
        'view' => NULL,
        'entity_print_css' => NULL,
      ),
    ),
  );
}