You are here

twocol_bricks.inc in Panels 6.2

twocol_bricks.inc

Implementation for the two column bricked layout

File

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

/**
 * @file twocol_bricks.inc
 *
 * Implementation for the two column bricked layout
 */

/**
 * Implementation of hook_panels_layouts().
 */
function panels_twocol_bricks_panels_layouts() {
  $items['twocol_bricks'] = array(
    'title' => t('Two column bricks'),
    'icon' => 'twocol_bricks.png',
    'theme' => 'panels_twocol_bricks',
    'css' => 'twocol_bricks.css',
    'panels' => array(
      'top' => t('Top'),
      'left_above' => t('Left above'),
      'right_above' => t('Right above'),
      'middle' => t('Middle'),
      'left_below' => t('Left below'),
      'right_below' => t('Right below'),
      'bottom' => t('Bottom'),
    ),
  );
  return $items;
}

Functions

Namesort descending Description
panels_twocol_bricks_panels_layouts Implementation of hook_panels_layouts().