You are here

function flipbook_theme_registry_alter in 3D Flipbook 8

Implements hook_theme_registry_alter().

File

./flipbook.module, line 47
Contains flipbook.module.

Code

function flipbook_theme_registry_alter(&$theme_registry) {
  $theme_registry['field__flipbook__flipbook__flipbook']['path'] = drupal_get_path('module', 'flipbook') . '/templates';
  $theme_registry['field__flipbook__flipbook__flipbook']['template'] = 'flipbook';
  $theme_registry['field__flipbook__flipbook__flipbook']['preprocess functions'] = [
    0 => 'flip_preprocess_page',
  ];
  $theme_registry['views_view_field__field_flipbook']['path'] = drupal_get_path('module', 'flipbook') . '/templates/';
  $theme_registry['views_view_field__field_flipbook']['template'] = 'flipbook';
  $theme_registry['views_view_field__field_flipbook']['preprocess functions'] = [
    0 => 'flip_preprocess_page',
  ];
}