Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
input.php
1<?php
3
5
6class 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}
__construct($name, $value=null)
Definition input.php:15