Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/web/dom/element/ |
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/web/dom/element/input.php |
<?php namespace Bitrix\Main\Web\DOM\Element; use Bitrix\Main\Web\DOM\Element; class Input extends Element { /** * @var string $name */ public $name = null; public $value = null; public function __construct($name, $value = null) { parent::__construct($name); $this->name = mb_strtolower($name); if($value !== null) { $this->value = $value; } } }