-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgcaba_drupal_form.render_fields.inc
91 lines (80 loc) · 2.87 KB
/
gcaba_drupal_form.render_fields.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
function gcaba_drupal_form_render_field_text($field, $form) {
$form['gcaba_drupal_form_render_field_text_'.$field['id'] ] = array(
'#title' => $field['title'],
'#type' => 'textfield',
'#value' => "",
'#attributes' => array(
'data-id' => $field['id'],
'class' => array('gcaba_drupal_form_render_field_text')
//'onfocus' => array('if(this.value == "'.$field['placeholder'].'") { this.value = ""; }'),
//'onblur' => array('if(this.value == "") { this.value = "'.$field['placeholder'].'"; }')
),
);
return $form;
}
function gcaba_drupal_form_render_field_select($field, $form) {
$form['gcaba_drupal_form_render_field_select_'.$field['id'] ] = array(
'#title' => $field['title'],
'#type' => 'select',
'#options' => $field['options'],
'#attributes' => array(
'data-id' => $field['id'],
'class' => array('gcaba_drupal_form_render_field_select')
),
);
return $form;
}
function gcaba_drupal_form_render_field_textarea($field,$form) {
$form['gcaba_drupal_form_render_field_textarea'.$field['id'] ] = array(
'#title' => $field['title'],
'#type' => 'textarea',
'#value' => "",
'#attributes' => array(
'data-id' => $field['id'],
'class' => array('gcaba_drupal_form_render_field_textarea'),
'onfocus' => array('if(this.value == "'.$field['placeholder'].'") { this.value = ""; }'),
'onblur' => array('if(this.value == "") { this.value = "'.$field['placeholder'].'"; }')
),
);
return $form;
}
function gcaba_drupal_form_render_field_radio($field,$form) {
$form['gcaba_drupal_form_render_field_radio'.$field['id'] ] = array(
'#title' => $field['title'],
'#type' => 'radios',
'#value' => $field['placeholder'],
'#options' => $field['options'],
'#attributes' => array(
'data-id' => $field['id'],
'class' => array('gcaba_drupal_form_render_field_radio')
),
);
return $form;
}
function gcaba_drupal_form_render_field_checkbox($field,$form) {
$form['gcaba_drupal_form_render_field_checkbox'.$field['id'] ] = array(
'#title' => $field['title'],
'#type' => 'checkboxes',
'#options' => $field['options'],
'#attributes' => array(
'data-id' => $field['id'],
'class' => array('gcaba_drupal_form_render_field_checkbox')
),
);
return $form;
}
function gcaba_drupal_form_render_field_recaptcha($field,$form) {
$form['gcaba_drupal_form_render_field_recaptcha'.$field['id'] ] = array(
'#title' => $field['title'],
'#type' => 'radio',
'#value' => $field['placeholder'],
'#attributes' => array(
'data-id' => $field['id'],
'class' => array('gcaba_drupal_form_render_field_recaptcha'),
'onfocus' => array('if(this.value == "'.$field['placeholder'].'") { this.value = ""; }'),
'onblur' => array('if(this.value == "") { this.value = "'.$field['placeholder'].'"; }')
),
);
return $form;
}