17 abstract public function addHtmlComponent(
BaseHtml $htmlComponent);
25 public function htmlTable($identifier, $rowCount, $colCount){
26 return $this->addHtmlComponent(
new HtmlTable($identifier, $rowCount, $colCount));
36 public function htmlMessage($identifier, $content=
"",$styles=NULL) {
37 $msg= $this->addHtmlComponent(
new HtmlMessage($identifier, $content));
38 if(isset($msg) && $styles!==null)
39 $msg->setStyle($styles);
49 public function htmlMenu($identifier, $items=array()) {
50 return $this->addHtmlComponent(
new HtmlMenu($identifier, $items));
59 return $this->addHtmlComponent(
new HtmlIconMenu($identifier, $items));
79 public function htmlBreadcrumb($identifier, $items=array(), $autoActive=
true, $startIndex=0, $hrefFunction=NULL) {
80 return $this->addHtmlComponent(
new HtmlBreadcrumb($identifier, $items, $autoActive, $startIndex, $hrefFunction));
90 public function htmlForm($identifier, $elements=array()) {
91 return $this->addHtmlComponent(
new HtmlForm($identifier, $elements));
103 public function htmlGrid($identifier, $numRows=1, $numCols=NULL, $createCols=
true, $implicitRows=
false) {
104 return $this->addHtmlComponent(
new HtmlGrid($identifier, $numRows, $numCols, $createCols, $implicitRows));
Semantic Message component.
BaseHtml for HTML components.
htmlIconMenu($identifier, $items=array())
Adds an icon menu.
htmlGrid($identifier, $numRows=1, $numCols=NULL, $createCols=true, $implicitRows=false)
htmlMessage($identifier, $content="", $styles=NULL)
Adds a new message.
Semantic UI Breadcrumb component.
htmlBreadcrumb($identifier, $items=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL)
Returns a new Semantic Html Breadcrumb.
htmlLabeledIconMenu($identifier, $items=array())
Adds an labeled icon menu.
Semantic HTML Table component.
htmlMenu($identifier, $items=array())
htmlForm($identifier, $elements=array())
Returns a new Semantic Form.
htmlTable($identifier, $rowCount, $colCount)