You are here

function _ds_ds_layouts in Display Suite 6.3

Implements hook_ds_layouts()

1 call to _ds_ds_layouts()
ds_ds_layouts in ./ds.module
Implementation of hook_ds_layouts()

File

includes/ds.registry.inc, line 623
Registry functions.

Code

function _ds_ds_layouts() {
  $layouts = array(
    'default' => array(
      'regions' => array(
        'header' => array(
          '#name' => t('Header'),
          '#attributes' => array(
            'class' => 'clear-block',
          ),
        ),
        'middle' => array(
          '#name' => t('Middle'),
        ),
        'left' => array(
          '#name' => t('Left'),
          '#attributes' => array(
            'class' => 'left',
          ),
        ),
        'right' => array(
          '#name' => t('Right'),
          '#attributes' => array(
            'class' => 'right',
          ),
        ),
        'footer' => array(
          '#name' => t('Footer'),
          '#attributes' => array(
            'class' => 'clear-block',
          ),
        ),
      ),
    ),
    'minimal' => array(
      'regions' => array(
        'middle' => array(
          '#name' => t('Middle'),
        ),
      ),
    ),
  );
  return $layouts;
}