phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
HtmlShapeItem.php
Go to the documentation of this file.
1 <?php
3 
5 
7  public function __construct($identifier, $content) {
8  parent::__construct($identifier,"div","side",$content);
9  }
10 
11  public function setActive($value=true){
12  if($value){
13  $this->addToPropertyCtrl("class", "active", ["active"]);
14  }else{
15  $this->removePropertyValue("class", "active");
16  }
17  return $this;
18  }
19 }
Base class for Semantic double elements.
addToPropertyCtrl($name, $value, $typeCtrl)