You are here

flot_axislabels.module in Flot 8

A collection of module hooks for the flot_spider module.

File

flot_axislabels/flot_axislabels.module
View source
<?php

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

/**
 * Implements hook(library_info_alter().
 */
function flot_axislabels_library_info_alter(&$libraries, $extension) {

  // We need to add this module as a dependency of the flot module.
  if ($extension == "flot") {
    $libraries['flot']['dependencies'][] = 'flot_axislabels/axislabels';
  }
}

Functions

Namesort descending Description
flot_axislabels_library_info_alter Implements hook(library_info_alter().