Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
input.php
1
<?php
2
namespace
Bitrix\Main\Web\DOM\Element
;
3
4
use
Bitrix\Main\Web\DOM\Element
;
5
6
class
Input
extends
Element
7
{
11
public
$name
=
null
;
12
13
public
$value
=
null
;
14
15
public
function
__construct
(
$name
,
$value
=
null
)
16
{
17
parent::__construct(
$name
);
18
19
$this->name = mb_strtolower(
$name
);
20
if
(
$value
!==
null
)
21
{
22
$this->value =
$value
;
23
}
24
}
25
}
Bitrix\Main\Web\DOM\Element\Input
Definition
input.php:7
Bitrix\Main\Web\DOM\Element\Input\__construct
__construct($name, $value=null)
Definition
input.php:15
Bitrix\Main\Web\DOM\Element\Input\$value
$value
Definition
input.php:13
Bitrix\Main\Web\DOM\Element\Input\$name
$name
Definition
input.php:11
Bitrix\Main\Web\DOM\Element
Definition
element.php:5
Bitrix\Main\Web\DOM\Element
Definition
input.php:2
modules
main
lib
web
dom
element
input.php
Создано системой
1.10.0