function vefl_vefl_layouts in Views exposed form layout 7
Implements hook_vefl_layouts().
File
- includes/
vefl.inc, line 11 - Provides default layouts for views exposed form.
Code
function vefl_vefl_layouts() {
return array(
'vefl_onecol' => array(
'title' => t('Single column'),
'regions' => array(
'middle' => t('Middle column'),
),
'module' => 'VEFL',
),
'vefl_twocol' => array(
'title' => t('Two column'),
'regions' => array(
'left' => t('Left side'),
'right' => t('Right side'),
),
'module' => 'VEFL',
),
'vefl_threecol' => array(
'title' => t('Three column'),
'regions' => array(
'left' => t('Left side'),
'middle' => t('Middle column'),
'right' => t('Right side'),
),
'module' => 'VEFL',
),
);
}