You are here

function contentanalysis_theme in Content Analysis 8

Same name and namespace in other branches
  1. 7 includes/theme.inc \contentanalysis_theme()

Implements hook_theme().

File

includes/theme.inc, line 41
Contains the functions used to theme the outputs of this module.

Code

function contentanalysis_theme($existing, $type, $theme, $path) {
  return array(
    'contentanalysis_slider_value' => array(
      'render element' => 'element',
      'template' => 'slider-value',
      'path' => "{$path}/theme",
    ),
    'contentanalysis_slider_range' => array(
      'render element' => 'element',
      'template' => 'slider-range',
      'path' => "{$path}/theme",
    ),
  );
}