You are here

bootstrap_threecol_stacked.inc in Panels Bootstrap Layouts 7.2

File

plugins/layouts/bootstrap_threecol_stacked/bootstrap_threecol_stacked.inc
View source
<?php

/**
 * Implements hook_panels_layouts().
 */

// Plugin definition
$plugin = array(
  'title' => t('Three Columns Stacked'),
  'category' => t('Bootstrap'),
  'icon' => 'bootstrap_threecol_stacked.png',
  'theme' => 'bootstrap_threecol_stacked',
  'admin css' => '../panels-bootstrap-layouts-admin.css',
  'regions' => array(
    'top' => t('Top'),
    'left' => t('Left side'),
    'middle' => t('Middle column'),
    'right' => t('Right side'),
    'bottom' => t('Bottom'),
  ),
);