-
-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathHiddenField.php
More file actions
86 lines (70 loc) · 1.71 KB
/
HiddenField.php
File metadata and controls
86 lines (70 loc) · 1.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Forms\Controls;
use Nette;
/**
* Hidden form control used to store a non-displayed value.
*/
class HiddenField extends BaseControl
{
/** @var bool */
private $persistValue;
public function __construct($persistentValue = null)
{
parent::__construct();
$this->control->type = 'hidden';
$this->setOption('type', 'hidden');
if ($persistentValue !== null) {
$this->unmonitor(Nette\Forms\Form::class);
$this->persistValue = true;
$this->value = (string) $persistentValue;
}
}
/**
* Sets control's value.
* @return static
* @internal
*/
public function setCurrentValue($value)
{
if (!is_scalar($value) && $value !== null && !method_exists($value, '__toString')) {
throw new Nette\InvalidArgumentException(sprintf("Value must be scalar or null, %s given in field '%s'.", gettype($value), $this->name));
}
if (!$this->persistValue) {
$this->value = (string) $value;
}
return $this;
}
/**
* Generates control's HTML element.
*/
public function getControl(): Nette\Utils\Html
{
$this->setOption('rendered', true);
$el = clone $this->control;
return $el->addAttributes([
'name' => $this->getHtmlName(),
'disabled' => $this->isDisabled(),
'value' => $this->value,
]);
}
/**
* Bypasses label generation.
* @param string|object
*/
public function getLabel($caption = null): void
{
}
/**
* Adds error message to the list.
* @param string|object
*/
public function addError($message, bool $translate = true): void
{
$this->getForm()->addError($message, $translate);
}
}