phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
Dimmer.php
Go to the documentation of this file.
1<?php
3
5
7
8 public function __construct(JsUtils $js) {
9 parent::__construct($js);
10 $this->uiName = "dimmer";
11 }
12
13 public function setOn($value = false) {
14 $this->params["on"] = $value;
15 }
16
17 public function setOpacity($value) {
18 $this->params["opacity"] = $value;
19 }
20
21 public function setClosable($value) {
22 $this->params["closable"] = $value;
23 }
24}
JQuery PHP library.
Definition JsUtils.php:23