You are here

webform_link.module in Webform Link 7

Same filename and directory in other branches
  1. 6 webform_link.module

Webform Link module.

File

webform_link.module
View source
<?php

/**
 * @file
 * Webform Link module.
 */

/**
 * Implements hook_webform_component_info().
 */
function webform_link_webform_component_info() {
  $components = array();
  $components['link'] = array(
    'label' => t('Link'),
    'description' => t('Create a link.'),
    'features' => array(
      'csv' => TRUE,
      'email' => TRUE,
      'email_address' => FALSE,
      'email_name' => FALSE,
      'required' => TRUE,
      'title_display' => TRUE,
      'title_inline' => TRUE,
      'conditional' => TRUE,
      'group' => FALSE,
      'spam_analysis' => FALSE,
      'attachment' => FALSE,
    ),
    'file' => 'components/link.inc',
  );
  return $components;
}