Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / layouter / layouter.api.php
1 <?php
2 /**
3  * @file
4  * Contains declaration of hook_layouter_templates_info.
5  *
6  * @see hook_layouter_templates_info().
7  */
8
9 /**
10  * Write your custom layout templates by implementing this hook.
11  * Template must have structure:
12  *
13  * LAYOUT_NAME = [
14  *   'title' => t('LAYOUT_TITLE'),
15  *   'fields' => [
16  *     'FIELD_NAME' => [
17  *       'type' => 'FIELD_TYPE', (Required, allowed: text, image)
18  *       'title' => t('FIELD_TITLE'), (Optional)
19  *       'description' => t('ADDITIONAL_DESCRIPTION'), (Optional)
20  *     ],
21  *   ],
22  *   'theme' => 'LAYOUT_THEME_NAME',
23  * ];
24  */
25 function hook_layouter_templates_info() {}