You are here

function flot_examples_theme in Flot 8

Implements hook_theme().

File

flot_examples/flot_examples.module, line 14
A collection of module hooks for the flot_examples module.

Code

function flot_examples_theme(array $existing, $type, $theme, $path) {
  return array(
    'flot_examples' => [
      'variables' => [
        'id' => NULL,
        'text' => [],
        'title' => NULL,
        'demo_container_attributes' => '',
      ],
    ],
    'flot_examples_series_toggle' => [
      'variables' => [
        'text' => [],
      ],
    ],
    'flot_examples_zooming' => [
      'variables' => [
        'text' => [],
      ],
    ],
    'flot_examples_navigate' => [],
    'flot_examples_visitors' => [
      'variables' => [
        'text' => [],
      ],
    ],
    'flot_examples_series_pie' => [],
  );
}