You are here

webform_shs.module in Webform Simple Hierarchical Select 7

Same filename and directory in other branches
  1. 8 webform_shs.module

File

webform_shs.module
View source
<?php

/**
 * @file
 */

/**
 * Implements hook_webform_component_info().
 */
function webform_shs_webform_component_info() {
  $components['shs'] = array(
    'label' => t('Simple hierarchical select'),
    'description' => t('Hierarchical select list.'),
    'features' => array(
      'private' => FALSE,
    ),
    'file' => 'components/shs.inc',
  );
  return $components;
}