function webform_bt_layout_webform_component_info in Webform Bootstrap 3 Layout 7.3
Implements hook_webform_component_info().
File
- ./
webform_bt_layout.module, line 22
Code
function webform_bt_layout_webform_component_info() {
return array(
'bt_layout_row' => array(
'label' => t('Bootstrap layout row'),
'description' => t('Create bootstrap row.'),
'features' => array(
'csv' => FALSE,
'required' => FALSE,
'conditional' => FALSE,
'group' => TRUE,
'title_display' => FALSE,
'title_inline' => FALSE,
'description' => FALSE,
'wrapper_classes' => FALSE,
),
'file' => 'bt_layout_row.inc',
),
'bt_layout_cols' => array(
'label' => t('Bootstrap layout cols'),
'description' => t('Allows you to arrange fields into columns.'),
'features' => array(
'csv' => FALSE,
'required' => FALSE,
'conditional' => FALSE,
'group' => TRUE,
'title_display' => FALSE,
'title_inline' => FALSE,
'description' => FALSE,
'wrapper_classes' => FALSE,
),
'file' => 'bt_layout_cols.inc',
),
);
}