-
Notifications
You must be signed in to change notification settings - Fork 1
/
FormMultipleTextField.php
115 lines (98 loc) · 2.13 KB
/
FormMultipleTextField.php
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php if (!defined('TL_ROOT')) die('You cannot access this file directly!');
/**
* Frontend filter for Contao MetaModels
*
* @copyright 2013 de la Haye Kommunikationsdesign <http://www.delahaye.de>
* @author Christian de la Haye <service@delahaye.de>
* @package metamodels_dlh_frontendfilter
* @license LGPL
* @filesource
*/
/**
* Class FormMultipleTextField
*
* Form field "multiple text", based on form field by Leo Feyer
* @author Christian de la Haye <service@delahaye.de>
*/
class FormMultipleTextField extends Widget
{
/**
* Submit user input
* @var boolean
*/
protected $blnSubmitInput = true;
/**
* Template
* @var string
*/
protected $strTemplate = 'form_widget';
/**
* Add specific attributes
* @param string
* @param mixed
*/
public function __set($strKey, $varValue)
{
switch ($strKey)
{
case 'maxlength':
if ($varValue > 0)
{
$this->arrAttributes['maxlength'] = $varValue;
}
break;
case 'mandatory':
if ($varValue)
{
$this->arrAttributes['required'] = 'required';
}
else
{
unset($this->arrAttributes['required']);
}
parent::__set($strKey, $varValue);
break;
case 'placeholder':
$this->arrAttributes['placeholder'] = $varValue;
break;
default:
parent::__set($strKey, $varValue);
break;
}
}
/**
* Trim values
* @param mixed
* @return mixed
*/
protected function validator($varInput)
{
if (is_array($varInput))
{
return parent::validator($varInput);
}
return parent::validator(trim($varInput));
}
/**
* Generate the widget and return it as string
* @return string
*/
public function generate()
{
for($i=0; $i<$this->size; $i++)
{
$return .= sprintf('<input type="%s" name="%s[]" id="ctrl_%s_%s" class="text%s%s" value="%s"%s%s',
($this->hideInput ? 'password' : 'text'),
$this->strName,
$this->strId,
$i,
($this->hideInput ? ' password' : ''),
(strlen($this->strClass) ? ' ' . $this->strClass : ''),
specialchars($this->varValue[$i]),
$this->getAttributes(),
$this->strTagEnding);
}
return $return;
}
}
?>