1 | <?php |
||
15 | class UIButton extends \Asymptix\ui\UIComponent { |
||
16 | |||
17 | const DEFAULT_TEMPLATE = "/../templates/components/ui_button.tpl.php"; |
||
18 | |||
19 | const BTN_RESET = "reset"; |
||
20 | const BTN_BUTTON = "button"; |
||
21 | const BTN_SUBMIT = "submit"; |
||
22 | |||
23 | protected $type = self::BTN_BUTTON; |
||
24 | |||
25 | protected $isClose = false; |
||
26 | |||
27 | public function __construct($attribs = [], $template = null, $show = false) { |
||
39 | } |
||
40 |