15 lines
300 B
PHP
15 lines
300 B
PHP
<?php
|
|
|
|
/**
|
|
* 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')),
|
|
);
|