phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Modal.php
Go to the documentation of this file.
1 <?php
2 
4 
5 use Ajax\JsUtils;
6 
15 
16  public function __construct(JsUtils $js) {
17  parent::__construct($js);
18  $this->uiName='modal';
19  }
20 
21  public function showDimmer(){
22  return $this->addBehavior('hide dimmer');
23  }
24 
25  public function setInverted(){
26  $this->params['inverted']=true;
27  }
28 
29  public function setOnHidden($jsCode) {
30  $this->addComponentEvent('onHidden', $jsCode);
31  }
32 }
Ajax$Modal This class is part of Ubiquity.
Definition: Modal.php:14
__construct(JsUtils $js)
Definition: Modal.php:16
JQuery PHP library.
Definition: JsUtils.php:23