You are here

flot_views_pie.module in Flot 8

A collection of module hooks for the flot_views_pie module.

File

flot_views_pie/flot_views_pie.module
View source
<?php

/**
 * @file
 * A collection of module hooks for the flot_views_pie module.
 */

// Store preprocess theme functions in a separate .inc file.
\Drupal::moduleHandler()
  ->loadInclude('flot_views_pie', 'inc', 'flot_views_pie.theme');

/**
 * Implements hook_theme().
 */
function flot_views_pie_theme(array $existing, $type, $theme, $path) {
  return [
    'flot_views_pie' => [
      'render element' => 'flot',
    ],
  ];
}

Functions

Namesort descending Description
flot_views_pie_theme Implements hook_theme().