You are here

function layouter_extension_example_layouter_templates in Layouter - WYSIWYG layout templates 7

Implements hook_layouter_templates().

File

modules/layouter_extension_example/layouter_extension_example.module, line 20
Extension example.

Code

function layouter_extension_example_layouter_templates() {
  $items = array(
    'one_column_width_500' => array(
      'title' => t('Single column of text 500px wide'),
      'form' => 'layouter_extension_example_one_column_width_500_form',
      'theme' => 'layouter_extension_example_one_column_width_500',
    ),
  );
  return $items;
}