예제 #1
0
 public function __construct($identifier, $type = "text", $value = NULL, $placeholder = NULL)
 {
     parent::__construct($identifier, "input");
     $this->setProperty("name", $identifier);
     $this->setValue($value);
     $this->setPlaceholder($placeholder);
     $this->setProperty("type", $type);
 }
예제 #2
0
 public function __construct($identifier)
 {
     parent::__construct($identifier, "input");
     $this->setProperty("name", $identifier);
     $this->setProperty("class", "form-control");
     $this->setProperty("role", "input");
     $this->setProperty("value", "");
     $this->setProperty("type", "text");
 }
예제 #3
0
 public function __construct($identifier)
 {
     parent::__construct($identifier, "span");
     $this->_template = '<span class="glyphicon %glyphicon%" aria-hidden="true"></span>';
 }
예제 #4
0
 public function __construct($identifier, $src = "", $alt = "")
 {
     parent::__construct($identifier, "img");
     $this->setSrc($src);
     $this->setAlt($alt);
 }
예제 #5
0
 public function __construct($identifier, $tagName = "p")
 {
     parent::__construct($identifier, $tagName);
     $this->_template = "<%tagName% id='%identifier%' %properties%>%wrapContentBefore%%content%%wrapContentAfter%</%tagName%>";
 }
예제 #6
0
 public function __construct($identifier, $flag)
 {
     parent::__construct($identifier, "i");
     $this->_template = '<i class="%flag% flag"></i>';
     $this->flag = $flag;
 }
 public function __construct($identifier, $tagName = "br", $baseClass = "ui")
 {
     parent::__construct($identifier, $tagName);
     $this->_baseClass = $baseClass;
     $this->setClass($baseClass);
 }