<?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;
}
