You are here

function webform_layout_webform_component_info in Webform Layout 7

Same name and namespace in other branches
  1. 6 webform_layout.module \webform_layout_webform_component_info()
  2. 7.2 webform_layout.module \webform_layout_webform_component_info()

Implements hook_webform_component_info().

File

./webform_layout.module, line 24

Code

function webform_layout_webform_component_info() {
  return array(
    'layout_box' => array(
      'label' => t('Layout Box'),
      'description' => t('Allows you to arrange fields into rows and columns.'),
      'features' => array(
        'csv' => FALSE,
        'required' => FALSE,
        'conditional' => FALSE,
        'group' => TRUE,
        'title_display' => FALSE,
      ),
      'file' => 'layout_box.inc',
    ),
  );
}