You are here

function charts_theme in Charts 7.2

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

Implements hook_theme().

File

./charts.module, line 174
Provides elements for rendering charts and Views integration.

Code

function charts_theme() {
  return array(
    'charts_settings_fields' => array(
      'render element' => 'element',
    ),
    'charts_chart' => array(
      'render element' => 'element',
    ),
  );
}