You are here

layouter.api.php in Layouter - WYSIWYG layout templates 8

Contains declaration of hook_layouter_templates_info.

File

layouter.api.php
View source
<?php

/**
 * @file
 * Contains declaration of hook_layouter_templates_info.
 *
 * @see hook_layouter_templates_info().
 */

/**
 * Write your custom layout templates by implementing this hook.
 *
 * Template must have structure:
 *
 * LAYOUT_NAME = [
 *   'title' => t('LAYOUT_TITLE'),
 *   'fields' => [
 *     'FIELD_NAME' => [
 *       'type' => 'FIELD_TYPE', (Required, allowed: text, image)
 *       'title' => t('FIELD_TITLE'), (Optional)
 *       'description' => t('ADDITIONAL_DESCRIPTION'), (Optional)
 *     ],
 *   ],
 *   'theme' => 'LAYOUT_THEME_NAME',
 * ];
 */
function hook_layouter_templates_info() {
}

Functions

Namesort descending Description
hook_layouter_templates_info Write your custom layout templates by implementing this hook.