Ajax/semantic/html/collections/menus/HtmlAccordionMenu.php 1 location
|
@@ 37-38 (lines=2) @@
|
34 |
|
* @see BaseHtml::run() |
35 |
|
*/ |
36 |
|
public function run(JsUtils $js) { |
37 |
|
if(isset($this->_bsComponent)===false) |
38 |
|
$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
39 |
|
$this->addEventsOnRun($js); |
40 |
|
return $this->_bsComponent; |
41 |
|
} |
Ajax/semantic/html/modules/HtmlAccordion.php 1 location
|
@@ 65-66 (lines=2) @@
|
62 |
|
* @see BaseHtml::run() |
63 |
|
*/ |
64 |
|
public function run(JsUtils $js) { |
65 |
|
if(isset($this->_bsComponent)===false) |
66 |
|
$this->_bsComponent=$js->semantic()->accordion("#".$this->identifier,$this->params); |
67 |
|
$this->addEventsOnRun($js); |
68 |
|
return $this->_bsComponent; |
69 |
|
} |
Ajax/semantic/html/modules/HtmlTab.php 1 location
|
@@ 78-79 (lines=2) @@
|
75 |
|
* @see BaseHtml::run() |
76 |
|
*/ |
77 |
|
public function run(JsUtils $js) { |
78 |
|
if(isset($this->_bsComponent)===false) |
79 |
|
$this->_bsComponent=$js->semantic()->tab("#".$this->identifier." .item",$this->params); |
80 |
|
$this->addEventsOnRun($js); |
81 |
|
return $this->_bsComponent; |
82 |
|
} |