flot_spider.module in Flot 8
A collection of module hooks for the flot_spider module.
File
flot_spider/flot_spider.moduleView source
<?php
/**
* @file
* A collection of module hooks for the flot_spider module.
*/
/**
* Implements hook(library_info_alter().
*/
function flot_spider_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_spider/spider';
}
}
Functions
Name | Description |
---|---|
flot_spider_library_info_alter | Implements hook(library_info_alter(). |