1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
input.php
См. документацию.
1<?php
2
4
6
7class Input extends Element
8{
12 public $name = null;
13
14 public $value = null;
15
16 public function __construct($name, $value = null)
17 {
18 parent::__construct($name);
19
20 $this->name = mb_strtolower($name);
21 if($value !== null)
22 {
23 $this->value = $value;
24 }
25 }
26}
__construct($name, $value=null)
Определения input.php:16