You are here

function ds_example_layout in Display Suite 7.2

Same name and namespace in other branches
  1. 8.2 drush/example_layout/example_layout.inc \ds_example_layout()
  2. 8.3 drush/example_layout/example_layout.inc \ds_example_layout()
  3. 7 example_layout/example_layout.inc \ds_example_layout()

@file Display Suite example layout configuration.

File

drush/example_layout/example_layout.inc, line 8
Display Suite example layout configuration.

Code

function ds_example_layout() {
  return array(
    'label' => t('Example layout'),
    'regions' => array(
      'left' => t('Left'),
      'right' => t('Right'),
    ),
  );
}