add module custom footer
[ryf-theme.git] / modules / footer / footer.module
... / ...
CommitLineData
1<?php
2/**
3 * @file
4 * Code for the footer module.
5 */
6
7/**
8 * Implements hook_theme()
9 */
10
11function footer_theme($existing, $type, $theme, $path) {
12 return [
13 'footer' => [
14 'variables' => ['menu_array' => NULL ]
15 ],
16
17 ];
18}