16 lines
211 B
PHP
Executable File
16 lines
211 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install and update functions for the Charts module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_requirements().
|
|
*/
|
|
function charts_requirements($phase) {
|
|
$requirements = [];
|
|
|
|
return $requirements;
|
|
}
|