Marton Kiss e7e0a499b7 Frontpage block layout
Reorganize frontpage layout and add new block templates like
community stats, community map and find nearby groups.

Change-Id: I1acf920113068ba8cba8af78cf2e532002c569cd
2013-12-10 21:30:02 +01:00

27 lines
737 B
PHP

<?php
/**
* Implementation of hook_panels_layouts()
* @return multitype:
*/
function openstack_openstack_front_panels_layouts() {
$items['openstack_front'] = array(
'title' => t('Openstack Front'),
'category' => t('Openstack Panels'),
'icon' => 'front.png',
'theme' => 'openstack_front',
'admin css' => 'openstack_front.admin.css',
'regions' => array(
'os_top' => t('Top (Conditional)'),
'os_left' => t('Left'),
'os_center' => t('Center'),
'os_right' => t('Right'),
'os_middle' => t('Middle (Conditional)'),
'os_bottom_left' => t('Bottom Left'),
'os_bottom_right' => t('Bottom Right'),
'os_bottom' => t('Bottom (Conditional)'),
),
);
return $items;
}