-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathThemeTabForm.php
560 lines (515 loc) · 15.4 KB
/
ThemeTabForm.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
<?php
declare(strict_types=1);
namespace XoopsModules\Publisher;
/*
You may not change or alter any portion of this comment or credits
of supporting developers from this source code or any supporting source code
which is considered copyrighted (c) material of the original comment or credit authors.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
/**
* Publisher class
*
* @copyright The XUUPS Project http://sourceforge.net/projects/xuups/
* @license http://www.fsf.org/copyleft/gpl.html GNU public license
* @since 1.0
* @author trabis <lusopoemas@gmail.com>
* @author John Neill <catzwolf@xoosla.com>
*/
require_once \dirname(__DIR__) . '/include/common.php';
/**
* XoopsThemeTabForm
*
* @author John
* @copyright Copyright (c) 2009
*/
class ThemeTabForm extends \XoopsForm
{
public $formTabs = [];
/**
* "action" attribute for the html form
*
* @var string
*/
public $action;
/**
* "method" attribute for the form.
*
* @var string
*/
public $method;
/**
* "name" attribute of the form
*
* @var string
*/
public $name;
/**
* title for the form
*
* @var string
*/
public $title;
/**
* summary for the form (WGAC2 Requirement)
*
* @var string
*/
public $summary = '';
/**
* array of {@link XoopsFormElement} objects
*
* @var array
*/
public $elements = [];
/**
* extra information for the <form> tag
*
* @var array
*/
public $extra = [];
/**
* required elements
*
* @var array
*/
public $required = [];
/**
* @param string $title
* @param string $name
* @param string $action
* @param string $method
* @param bool $addtoken
* @param string $summary
*/
public function __construct($title, $name, $action, $method = 'post', $addtoken = false, $summary = '')
{
// global $xoTheme;
// $GLOBALS['xoTheme']->addScript(PUBLISHER_URL . '/assets/js/ui.core.js');
// $GLOBALS['xoTheme']->addScript(PUBLISHER_URL . '/assets/js/ui.tabs.js');
// $GLOBALS['xoTheme']->addStylesheet(PUBLISHER_URL . '/assets/css/jquery-ui-1.7.1.custom.css');
$GLOBALS['xoTheme']->addScript('browse.php?Frameworks/jquery/plugins/jquery.ui.js');
$GLOBALS['xoTheme']->addStylesheet(XOOPS_URL . '/modules/system/css/ui/' . \xoops_getModuleOption('jquery_theme', 'system') . '/ui.all.css');
$this->title = $title;
$this->name = $name;
$this->action = $action;
$this->method = $method;
$this->summary = $summary;
if ($addtoken) {
$this->addElement(new \XoopsFormHiddenToken());
}
}
//function render() {}
/**
* @param \XoopsTpl $tpl
*/
public function assign(\XoopsTpl $tpl)
{
$i = -1;
$tab = -1;
$elements = [];
if (\count($this->getRequired()) > 0) {
$this->elements[] = "<tr class='foot'><td colspan='2'>* = " . _REQUIRED . '</td></tr>';
}
foreach ($this->getElements() as $ele) {
++$i;
if (\is_string($ele) && 'addTab' === $ele) {
++$tab;
continue;
}
if (\is_string($ele) && 'endTabs' === $ele) {
$tab = -1;
continue;
}
if (\is_string($ele)) {
$elements[$i]['body'] = $ele;
$elements[$i]['tab'] = $tab;
continue;
}
$eleName = $ele->getName();
$eleDescription = $ele->getDescription();
$n = $eleName ?: $i;
$elements[$n]['name'] = $eleName;
$elements[$n]['caption'] = $ele->getCaption();
$elements[$n]['body'] = $ele->render();
$elements[$n]['hidden'] = (bool)$ele->isHidden();
$elements[$n]['required'] = $ele->isRequired();
if ('' != $eleDescription) {
$elements[$n]['description'] = $eleDescription;
}
$elements[$n]['tab'] = $tab;
}
$js = $this->renderValidationJS();
$tpl->assign(
$this->getName(),
[
'title' => $this->getTitle(),
'id' => 'tab_' . \preg_replace('/[^a-z0-9]+/i', '', $this->getTitle()),
'name' => $this->getName(),
'action' => $this->getAction(),
'method' => $this->getMethod(),
'extra' => 'onsubmit="return xoopsFormValidate_' . $this->getName() . '();"' . $this->getExtra(),
'javascript' => $js,
'tabs' => $this->formTabs,
'elements' => $elements,
]
);
}
/**
* XoopsThemeTabForm::startTab()
*
* @param mixed $tabText
*/
public function startTab($tabText)
{
$temp = $this->startFormTabs($tabText);
$this->addElement($temp);
}
/**
* XoopsThemeTabForm::endTab()
*/
public function endTabs()
{
$temp = $this->endFormTabs();
$this->addElement($temp);
}
/**
* Creates a tab with title text and starts that tabs page
*
* @param $tabText - This is what is displayed on the tab
*
* @return string
*/
public function startFormTabs($tabText)
{
$this->formTabs[] = $tabText;
$ret = 'addTab';
return $ret;
}
/**
* Ends a tab page
*
* @return string
*/
public function endFormTabs()
{
$ret = 'endTabs';
return $ret;
}
/**
* @param bool $encode
*
* @return string
*/
public function getSummary($encode = false)
{
return $encode ? \htmlspecialchars($this->summary, \ENT_QUOTES) : $this->summary;
}
/**
* return the title of the form
*
* @param bool $encode To sanitizer the text?
*
* @return string
*/
public function getTitle($encode = false)
{
return $encode ? \htmlspecialchars($this->title, \ENT_QUOTES) : $this->title;
}
/**
* get the "name" attribute for the <form> tag
* Deprecated, to be refactored
*
* @param bool $encode To sanitizer the text?
*
* @return string
*/
public function getName($encode = true)
{
return $encode ? \htmlspecialchars($this->name, \ENT_QUOTES) : $this->name;
}
/**
* get the "action" attribute for the <form> tag
*
* @param bool $encode To sanitizer the text?
*
* @return string
*/
public function getAction($encode = true)
{
// Convert & to & for backward compatibility
return $encode ? \htmlspecialchars(\str_replace('&', '&', $this->action), \ENT_QUOTES) : $this->action;
}
/**
* get the "method" attribute for the <form> tag
*
* @return string
*/
public function getMethod()
{
return ('get' === mb_strtolower($this->method)) ? 'get' : 'post';
}
/**
* Add an element to the form
*
* @param string|\XoopsFormElement $formElement reference to a {@link XoopsFormElement}
* @param bool $required is this a "required" element?
*/
public function addElement($formElement, $required = false)
{
if (\is_string($formElement)) {
$this->elements[] = &$formElement;
} elseif (\is_subclass_of($formElement, 'xoopsformelement')) {
$this->elements[] = &$formElement;
if ($required) {
if (\method_exists($formElement, 'setRequired')) {
$formElement->setRequired(true);
} else {
$formElement->required = true;
}
$this->required[] = &$formElement;
}
}
}
/**
* get an array of forms elements
*
* @param bool $recurse get elements recursively?
*
* @return array array of {@link XoopsFormElement}s
*/
public function &getElements($recurse = false)
{
if (!$recurse) {
return $this->elements;
}
$ret = [];
foreach ($this->elements as $i => $iValue) {
if (\is_object($this->elements[$i])) {
$ret[] = &$this->elements[$i];
}
}
return $ret;
}
/**
* get an array of "name" attributes of form elements
*
* @return array array of form element names
*/
public function getElementNames()
{
$ret = [];
$elements = &$this->getElements(true);
foreach ($elements as $iValue) {
$ret[] = $iValue->getName();
}
return $ret;
}
/**
* get a reference to a {@link XoopsFormElement} object by its "name"
*
* @param string $name "name" attribute assigned to a {@link XoopsFormElement}
*
* @return bool|\XoopsFormElement reference to a {@link XoopsFormElement}, false if not found
*/
public function &getElementByName($name)
{
$elements = &$this->getElements(true);
foreach ($elements as $i => $iValue) {
if ($name == $iValue->getName(false)) {
return $elements[$i];
}
}
$elt = null;
return $elt;
}
/**
* Sets the "value" attribute of a form element
*
* @param string $name the "name" attribute of a form element
* @param string $value the "value" attribute of a form element
*/
public function setElementValue($name, $value)
{
$ele = &$this->getElementByName($name);
if (\is_object($ele) && \method_exists($ele, 'setValue')) {
$ele->setValue($value);
}
}
/**
* Sets the "value" attribute of form elements in a batch
*
* @param array $values array of name/value pairs to be assigned to form elements
*/
public function setElementValues($values)
{
if (\is_array($values) && !empty($values)) {
// will not use getElementByName() for performance..
$elements = &$this->getElements(true);
foreach ($elements as $i => $iValue) {
$name = $iValue->getName(false);
if ($name && isset($values[$name]) && \method_exists($elements[$i], 'setValue')) {
$iValue->setValue($values[$name]);
}
}
}
}
/**
* Gets the "value" attribute of a form element
*
* @param string $name the "name" attribute of a form element
* @param bool $encode To sanitizer the text?
*
* @return string the "value" attribute assigned to a form element, null if not set
*/
public function getElementValue($name, $encode = false)
{
$ele = &$this->getElementByName($name);
if (\is_object($ele) && \method_exists($ele, 'getValue')) {
return $ele->getValue($encode);
}
return null;
}
/**
* gets the "value" attribute of all form elements
*
* @param bool $encode To sanitizer the text?
*
* @return array array of name/value pairs assigned to form elements
*/
public function getElementValues($encode = false)
{
// will not use getElementByName() for performance..
$elements = &$this->getElements(true);
$values = [];
foreach ($elements as $i => $iValue) {
$name = $iValue->getName(false);
if ($name && \method_exists($elements[$i], 'getValue')) {
$values[$name] = $iValue->getValue($encode);
}
}
return $values;
}
/**
* set the extra attributes for the <form> tag
*
* @param string $extra extra attributes for the <form> tag
* @return string|void
*/
public function setExtra($extra)
{
if (!empty($extra)) {
$this->extra[] = $extra;
}
}
/**
* set the summary tag for the <form> tag
*
* @param string $summary
*/
public function setSummary($summary)
{
if (!empty($summary)) {
$this->summary = \strip_tags($summary);
}
}
/**
* get the extra attributes for the <form> tag
*
* @return string
*/
public function &getExtra()
{
$extra = empty($this->extra) ? '' : ' ' . \implode(' ', $this->extra);
return $extra;
}
/**
* make an element "required"
*
* @param \XoopsFormElement $formElement reference to a {@link XoopsFormElement}
*/
public function setRequired(\XoopsFormElement $formElement)
{
$this->required[] = &$formElement;
}
/**
* get an array of "required" form elements
*
* @return array array of {@link XoopsFormElement}s
*/
public function &getRequired()
{
return $this->required;
}
/**
* insert a break in the form
* This method is abstract. It must be overwritten in the child classes.
*
* @param string|null $extra extra information for the break
*
* @abstract
*/
public function insertBreak($extra = null)
{
}
/**
* returns renderered form
* This method is abstract. It must be overwritten in the child classes.
*
* @abstract
*/
public function render()
{
return '';
}
/**
* displays rendered form
*/
public function display()
{
echo $this->render();
}
/**
* Renders the Javascript function needed for client-side for validation
* Form elements that have been declared "required" and not set will prevent the form from being
* submitted. Additionally, each element class may provide its own "renderValidationJS" method
* that is supposed to return custom validation code for the element.
* The element validation code can assume that the JS "myform" variable points to the form, and must
* execute <i>return false</i> if validation fails.
* A basic element validation method may contain something like this:
* <code>
* function renderValidationJS() {
* $name = $this->getName();
* return "if (myform.{$name}.value != 'valid') { " .
* "myform.{$name}.focus(); window.alert( '$name is invalid' ); return false;" .
* " }";
* }
* </code>
*
* @param bool $withtags Include the < javascript > tags in the returned string
*
* @return string
*/
public function renderValidationJS($withtags = true)
{
$js = '';
if ($withtags) {
$js .= "\n<!-- Start Form Validation JavaScript //-->\n<script type='text/javascript'>\n<!--//\n";
}
$formname = $this->getName();
$js .= "function xoopsFormValidate_{$formname}() { var myform = window.document.{$formname}; ";
$elements = &$this->getElements(true);
foreach ($elements as $elt) {
if (\method_exists($elt, 'renderValidationJS')) {
$js .= $elt->renderValidationJS();
}
}
$js .= "return true;\n}\n";
if ($withtags) {
$js .= "//--></script>\n";
}
return $js;
}
}