| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/enoikio/modules/webform/tests/modules/webform_test_options/ |
Upload File : |
<?php
/**
* @file
* Support module for webform that provides form alter hook for wizard cause tests.
*/
/**
* Implements hook_webform_options_WEBFORM_OPTIONS_ID_alter().
*/
function webform_test_options_webform_options_test_alter(array &$options, array &$element) {
$options += [
'four' => t('Four'),
'five' => t('Five'),
'six' => t('Six'),
];
}
/**
* Implements hook_webform_options_alter().
*/
function webform_test_options_webform_options_alter(array &$options, array &$element, $id) {
if ($id === 'custom') {
$options = [
'one' => t('One'),
'two' => t('Two'),
'three' => t('Three'),
];
// Set the default value to one of the added options.
$element['#default_value'] = 'one';
}
}