function ds_example_layout in Display Suite 7
Same name and namespace in other branches
- 8.2 drush/example_layout/example_layout.inc \ds_example_layout()
- 8.3 drush/example_layout/example_layout.inc \ds_example_layout()
- 7.2 drush/example_layout/example_layout.inc \ds_example_layout()
@file Display Suite example layout configuration.
File
- 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'),
),
);
}