phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
SemanticHtmlViewsTrait.php
Go to the documentation of this file.
1<?php
2
4
9
11
12 abstract public function addHtmlComponent(BaseHtml $htmlComponent);
13
19 public function htmlCard($identifier) {
20 return $this->addHtmlComponent(new HtmlCard($identifier));
21 }
22
28 public function htmlCardGroups($identifier, $cards=array()) {
29 return $this->addHtmlComponent(new HtmlCardGroups($identifier, $cards));
30 }
31
37 public function htmlItems($identifier, $items=array()) {
38 return $this->addHtmlComponent(new HtmlItems($identifier, $items));
39 }
40}
BaseHtml for HTML components.
Definition BaseHtml.php:17
Semantic html Items component.
Definition HtmlItems.php:14
addHtmlComponent(BaseHtml $htmlComponent)