-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.ao_form_media.php
198 lines (156 loc) · 5.36 KB
/
class.ao_form_media.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
class AOFormMedia extends Zend_Form {
public function init ( ) {
parent::init();
$this->_addFormElements();
}
protected function _addFormElements()
{
$this->setName('AOFormMedia');
$this->addElement($this->_getMediaId());
$this->addElement($this->_getMediaAltText());
$this->addElement($this->_getMediaTitle());
$this->addElement($this->_getMediaCaption());
$this->addElement($this->_getMediaDescription());
$this->addElement($this->_getMediaCategories());
}
protected function getStringFilters () {
return [
['StringTrim'],
['PregReplace', [
'match' => '/[^A-Za-z0-9 \'\"\-\/,.\:\#\&]/',
'replace' => ''
]]
];
}
protected function getStringValidators () {
return [
['NotEmpty', false, [
'messages' => [Zend_Validate_NotEmpty::IS_EMPTY => "Required"]
]],
['StringLength', false, [
'min' => 1,
'max' => 100,
'messages' => [
Zend_Validate_StringLength::TOO_SHORT => "Entry is too short.",
Zend_Validate_StringLength::TOO_LONG => "Entry is too long.",
]
]],
['Regex', false, [
'pattern' => '/^[A-Za-z0-9 \'\"\-\/,.\:\#\&]+$/',
'messages' => [Zend_Validate_Regex::NOT_MATCH => "Invalid characters."]
]]
];
}
// Form Fields //
protected function _getMediaId()
{
$name = 'media_id';
$options = [
'name' => $name,
'required' => true,
'filters' => $this->getStringFilters(),
'validators' => $this->getStringValidators(),
];
return new Zend_Form_Element_Text($name, $options);
}
protected function _getMediaAltText()
{
$name = 'media_alt_text';
$options = [
'name' => $name,
'required' => false,
'filters' => $this->getStringFilters(),
'validators' => $this->getStringValidators(),
];
return new Zend_Form_Element_Text($name, $options);
}
protected function _getMediaTitle()
{
$name = 'media_title';
$options = [
'name' => $name,
'required' => false,
'filters' => $this->getStringFilters(),
'validators' => $this->getStringValidators(),
];
return new Zend_Form_Element_Text($name, $options);
}
protected function _getMediaCaption()
{
$name = 'media_caption';
$options = [
'name' => $name,
'required' => false,
'filters' => [
['StringTrim'],
// ['PregReplace', [
// 'match' => '/[^A-Za-z0-9 \'\-\/,.]/',
// 'replace' => ''
// ]]
],
'validators' => [
['NotEmpty', false, [
'messages' => [Zend_Validate_NotEmpty::IS_EMPTY => "Required"]
]],
['StringLength', false, [
'min' => 1,
'max' => 5000,
'messages' => [
Zend_Validate_StringLength::TOO_SHORT => "Entry is too short.",
Zend_Validate_StringLength::TOO_LONG => "Entry is too long.",
]
]],
// ['Regex', false, [
// 'pattern' => '/^[A-Za-z0-9 \'\-\/,.]+$/',
// 'messages' => [Zend_Validate_Regex::NOT_MATCH => "Invalid characters."]
// ]]
],
];
return new Zend_Form_Element_Textarea($name, $options);
}
protected function _getMediaDescription()
{
$name = 'media_description';
$options = [
'name' => $name,
'required' => false,
'filters' => [
['StringTrim'],
// ['PregReplace', [
// 'match' => '/[^A-Za-z0-9 \'\-\/,.]/',
// 'replace' => ''
// ]]
],
'validators' => [
['NotEmpty', false, [
'messages' => [Zend_Validate_NotEmpty::IS_EMPTY => "Required"]
]],
['StringLength', false, [
'min' => 1,
'max' => 5000,
'messages' => [
Zend_Validate_StringLength::TOO_SHORT => "Entry is too short.",
Zend_Validate_StringLength::TOO_LONG => "Entry is too long.",
]
]],
// ['Regex', false, [
// 'pattern' => '/^[A-Za-z0-9 \'\-\/,.]+$/',
// 'messages' => [Zend_Validate_Regex::NOT_MATCH => "Invalid characters."]
// ]]
],
];
return new Zend_Form_Element_Textarea($name, $options);
}
protected function _getMediaCategories()
{
$name = 'media_categories';
$options = [
'name' => $name,
'required' => false,
'filters' => $this->getStringFilters(),
'validators' => $this->getStringValidators(),
];
return new Zend_Form_Element_Text($name, $options);
}
}