You are here

function charts_blocks_theme in Charts 8.3

Implements hook_theme().

File

modules/charts_blocks/charts_blocks.module, line 30
Contains chart_block_example.module.

Code

function charts_blocks_theme() {
  return [
    'charts_blocks' => [
      'template' => 'charts-block',
      'variables' => [
        'library' => '',
        'categories' => '',
        'seriesData' => '',
        'secondaryOptions' => '',
        'options' => '',
        'id' => '',
        'override' => '',
      ],
    ],
  ];
}