nur-sery/nur_src/v/bs3/fo/ControlHidden.php

17 lines
299 B
PHP
Raw Normal View History

2023-12-03 22:10:18 +04:00
<?php
namespace nur\v\bs3\fo;
use nur\v\v;
class ControlHidden extends Control {
function getControl(): array {
return v::tag1("input", [
"type" => "hidden",
"id" => $this->ppId,
"name" => $this->ppName,
"value" => $this->ppValue,
$this->ppAttrs,
]);
}
}