You are here

threecol_25_50_25.inc in Panels 6.2

File

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

/**
 * implementation of hook_panels_layouts
 */
function panels_threecol_25_50_25_panels_layouts() {
  $items['threecol_25_50_25'] = array(
    'title' => t('Three column 25/50/25'),
    'icon' => 'threecol_25_50_25.png',
    'theme' => 'panels_threecol_25_50_25',
    'theme arguments' => array(
      'id',
      'content',
    ),
    'panels' => array(
      'left' => t('Left side'),
      'middle' => t('Middle column'),
      'right' => t('Right side'),
    ),
  );
  return $items;
}

Functions

Namesort descending Description
panels_threecol_25_50_25_panels_layouts implementation of hook_panels_layouts