gantt-1.0.8/gantt.module
gantt.module
<?php
/**
* @file
* Primary module hooks for Gantt module.
*/
/**
* Implements hook_theme().
*
* Call the base hook from Paragraphs to allow preprocess hooks to work.
*/
function gantt_theme() {
// Store gantt preprocess theme functions in a separate .inc file.
\Drupal::moduleHandler()->loadInclude('gantt', 'inc', 'gantt.theme');
return [
'views_view_gantt' => [
'file' => 'gantt.theme.inc',
],
];
}
