25 abstract public function addHtmlComponent(
BaseHtml $htmlComponent);
35 public function htmlCheckbox($identifier, $label=NULL, $value=NULL, $type=NULL) {
36 return $this->addHtmlComponent(
new HtmlCheckbox($identifier, $label, $value, $type));
47 public function htmlRadios($identifier, $items=[], $label=NULL,$value=NULL, $type=NULL) {
59 public function htmlRating($identifier, $value, $max, $icon=
"") {
60 return $this->addHtmlComponent(
new HtmlRating($identifier, $value, $max, $icon));
71 return $this->addHtmlComponent(
new HtmlProgress($identifier, $value, $label));
80 public function htmlSearch($identifier, $placeholder=NULL, $icon=NULL) {
81 return $this->addHtmlComponent(
new HtmlSearch($identifier, $placeholder, $icon));
91 return $this->addHtmlComponent(
new HtmlDimmer($identifier, $content));
103 public function htmlModal($identifier, $header=
"", $content=
"", $actions=array()) {
104 return $this->addHtmlComponent(
new HtmlModal($identifier, $header,$content,$actions));
113 public function htmlTab($identifier, $tabs=array()) {
114 return $this->addHtmlComponent(
new HtmlTab($identifier, $tabs));
123 public function htmlShape($identifier, $slides=array()) {
124 return $this->addHtmlComponent(
new HtmlShape($identifier, $slides));
135 public function htmlDropdown($identifier, $value=
"", $items=array(),$associative=
true) {
136 return $this->addHtmlComponent(
new HtmlDropdown($identifier, $value, $items,$associative));
146 return $this->addHtmlComponent(
new HtmlPopup($container, $identifier, $content));
155 return $this->addHtmlComponent(
new HtmlAccordion($identifier));
175 return $this->addHtmlComponent(
new HtmlSticky($identifier, $content));
184 return $this->addHtmlComponent(
new HtmlSlider($identifier));
BaseHtml for HTML components.
htmlShape($identifier, $slides=array())
Returns a new Semantic Shape.
htmlPopup(BaseHtml $container, $identifier, $content)
htmlProgress($identifier, $value=0, $label=NULL)
Ajax$HtmlSlider This class is part of phpMv-ui.
htmlRating($identifier, $value, $max, $icon="")
htmlSlider($identifier)
Returns a new Semantic Slider.
htmlSticky($identifier, $content=array())
Returns a new Semantic Sticky.
htmlDropdown($identifier, $value="", $items=array(), $associative=true)
htmlCheckbox($identifier, $label=NULL, $value=NULL, $type=NULL)
Module checkbox.
htmlModal($identifier, $header="", $content="", $actions=array())
Returns a new semantic modal dialog.
htmlRadios($identifier, $items=[], $label=NULL, $value=NULL, $type=NULL)
htmlSearch($identifier, $placeholder=NULL, $icon=NULL)
htmlAccordionMenu($identifier, $items=array())
Return a new Semantic Menu Accordion.
htmlAccordion($identifier)
Returns a new Semantic Accordion.
htmlDimmer($identifier, $content=NULL)
htmlTab($identifier, $tabs=array())
Returns a new Semantic Tab.