webform_link.module in Webform Link 6
Same filename and directory in other branches
Webform Link module.
File
webform_link.moduleView 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;
}
Functions
Name![]() |
Description |
---|---|
webform_link_webform_component_info | Implements hook_webform_component_info(). |