-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunh_destinyone.captcha.inc
46 lines (40 loc) · 1.43 KB
/
unh_destinyone.captcha.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
* @file
* unh_destinyone.captcha.inc
*/
/**
* Implements hook_captcha_default_points().
*/
function unh_destinyone_captcha_default_points() {
$export = array();
$captcha = new stdClass();
$captcha->disabled = FALSE; /* Edit this to true to make a default captcha disabled initially */
$captcha->api_version = 1;
$captcha->form_id = 'webform_client_form_17';
$captcha->module = '';
$captcha->captcha_type = 'default';
$export['webform_client_form_17'] = $captcha;
$captcha = new stdClass();
$captcha->disabled = FALSE; /* Edit this to true to make a default captcha disabled initially */
$captcha->api_version = 1;
$captcha->form_id = 'webform_client_form_18';
$captcha->module = '';
$captcha->captcha_type = 'default';
$export['webform_client_form_18'] = $captcha;
$captcha = new stdClass();
$captcha->disabled = FALSE; /* Edit this to true to make a default captcha disabled initially */
$captcha->api_version = 1;
$captcha->form_id = 'webform_client_form_19';
$captcha->module = '';
$captcha->captcha_type = 'default';
$export['webform_client_form_19'] = $captcha;
$captcha = new stdClass();
$captcha->disabled = FALSE; /* Edit this to true to make a default captcha disabled initially */
$captcha->api_version = 1;
$captcha->form_id = 'webform_client_form_21';
$captcha->module = '';
$captcha->captcha_type = 'default';
$export['webform_client_form_21'] = $captcha;
return $export;
}