You are here

function charts_theme in Charts 8

Same name and namespace in other branches
  1. 8.4 charts.module \charts_theme()
  2. 8.3 charts.module \charts_theme()
  3. 6 charts.module \charts_theme()
  4. 7.2 charts.module \charts_theme()
  5. 7 charts.hooks.inc \charts_theme()
  6. 5.0.x charts.module \charts_theme()

File

./charts.module, line 13
Charts module file that provides hook_theme.

Code

function charts_theme($existing, $type, $theme, $path) {
  return array(
    'views_view_charts' => array(
      'variables' => array(
        'view' => NULL,
        'row' => NULL,
      ),
    ),
  );
}