phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Accordion.php
Go to the documentation of this file.
1 <?php
2 
4 
5 use Ajax\JsUtils;
6 
8 
9  public function __construct(JsUtils $js) {
10  parent::__construct($js);
11  $this->uiName="accordion";
12  }
13 
19  public function setOn($value="click") {
20  return $this->setParam("on", $value);
21  }
22 
23  public function setExclusive($value=true) {
24  return $this->setParam("exclusive", $value);
25  }
26 }
JQuery PHP library.
Definition: JsUtils.php:23