You are here

twocol_stacked.inc in Panels 6.2

File

layouts/twocol_stacked/twocol_stacked.inc
View source
<?php

/**
 * Implementation of hook_panels_layouts().
 */
function panels_twocol_stacked_panels_layouts() {
  $items['twocol_stacked'] = array(
    'title' => t('Two column stacked'),
    'icon' => 'twocol_stacked.png',
    'theme' => 'panels_twocol_stacked',
    'css' => 'twocol_stacked.css',
    'panels' => array(
      'top' => t('Top'),
      'left' => t('Left side'),
      'right' => t('Right side'),
      'bottom' => t('Bottom'),
    ),
  );
  return $items;
}

Functions

Namesort descending Description
panels_twocol_stacked_panels_layouts Implementation of hook_panels_layouts().