-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFormGroup.php
More file actions
67 lines (58 loc) · 1.84 KB
/
FormGroup.php
File metadata and controls
67 lines (58 loc) · 1.84 KB
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
<?php
declare(strict_types=1);
/**
* This file is part of the EaseTWBootstrap3 package
*
* https://github.com/VitexSoftware/php-ease-twbootstrap
*
* (c) Vítězslav Dvořák <http://vitexsoftware.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Ease\TWB;
class FormGroup extends \Ease\Html\DivTag
{
/**
* Položka TWBootstrp formuláře.
*
* @param string $label popisek pole formuláře
* @param \Ease\Html\Tag $content widget formuláře
* @param string $placeholder předvysvětlující text
* @param string $helptext Nápvěda pod prvkem
* @param string $addTagClass CSS třída kterou má být oskiován vložený prvek
*/
public function __construct(
$label = null,
$content = null,
$placeholder = null,
$helptext = null,
$addTagClass = 'form-control',
) {
if (\is_object($content) && method_exists($content, 'getTagID')) {
$id = $content->getTagID();
} else {
$id = null;
}
if (null === $id) {
$formKey = \Ease\Functions::lettersOnly($label);
} else {
$formKey = $id;
}
$properties['class'] = 'form-group';
parent::__construct(null, $properties);
$this->addItem(new \Ease\Html\LabelTag($formKey, $label));
$content->addTagClass($addTagClass);
if ($placeholder) {
$content->SetTagProperties(['placeholder' => $placeholder]);
}
$content->setTagId($formKey);
$this->addItem($content);
if ($helptext) {
$this->addItem(new \Ease\Html\PTag(
$helptext,
['class' => 'help-block'],
));
}
}
}