You are here

onecol.inc in Panels 7.3

Same filename and directory in other branches
  1. 6.3 plugins/layouts/onecol/onecol.inc

Implementation of hook_panels_layouts().

File

plugins/layouts/onecol/onecol.inc
View source
<?php

/**
 * @file
 * Implementation of hook_panels_layouts().
 */

// Plugin definition.
$plugin = array(
  'title' => t('Single column'),
  'category' => t('Columns: 1'),
  'icon' => 'onecol.png',
  'theme' => 'panels_onecol',
  'css' => 'onecol.css',
  'regions' => array(
    'middle' => t('Middle column'),
  ),
);