You are here

threecol_33_34_33_stacked.inc in Panels 6.2

File

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

/**
 * Implementation of hook_panels_layouts().
 */
function panels_threecol_33_34_33_stacked_panels_layouts() {
  $items['threecol_33_34_33_stacked'] = array(
    'title' => t('Three column 33/34/33 stacked'),
    'icon' => 'threecol_33_34_33_stacked.png',
    'theme' => 'panels_threecol_33_34_33_stacked',
    'css' => 'threecol_33_34_33_stacked.css',
    'panels' => array(
      'top' => t('Top'),
      'left' => t('Left side'),
      'middle' => t('Middle column'),
      'right' => t('Right side'),
      'bottom' => t('Bottom'),
    ),
  );
  return $items;
}

Functions

Namesort descending Description
panels_threecol_33_34_33_stacked_panels_layouts Implementation of hook_panels_layouts().