29 parent::__construct($autoCompile);
41 public function htmlButton($identifier, $value=
"", $cssStyle=
null, $onClick=
null) {
42 return $this->addHtmlComponent(
new HtmlButton($identifier, $value, $cssStyle, $onClick));
54 public function htmlGlyphButton($identifier, $glyphIcon=0, $value=
"", $cssStyle=NULL, $onClick=NULL) {
55 return $this->addHtmlComponent(
new HtmlGlyphButton($identifier, $glyphIcon, $value, $cssStyle, $onClick));
66 public function htmlButtongroups($identifier, $values=array(), $cssStyle=NULL, $size=NULL) {
67 return $this->addHtmlComponent(
new HtmlButtongroups($identifier, $values, $cssStyle, $size));
78 public function htmlDropdown($identifier, $value=
"", $items=array(), $cssStyle=NULL, $size=NULL) {
79 return $this->addHtmlComponent(
new HtmlDropdown($identifier, $value, $items, $cssStyle, $size));
90 public function htmlButtontoolbar($identifier, $elements=array(), $cssStyle=NULL, $size=NULL) {
91 return $this->addHtmlComponent(
new HtmlButtontoolbar($identifier, $elements, $cssStyle, $size));
101 public function htmlNavbar($identifier, $brand=
"Brand", $brandHref=
"#") {
102 return $this->addHtmlComponent(
new HtmlNavbar($identifier, $brand, $brandHref));
113 public function htmlProgressbar($identifier, $style=
"info", $value=0, $max=100, $min=0) {
114 return $this->addHtmlComponent(
new HtmlProgressbar($identifier, $style, $value, $max, $min));
125 public function htmlPanel($identifier, $content=NULL, $header=NULL, $footer=NULL) {
126 return $this->addHtmlComponent(
new HtmlPanel($identifier, $content, $header, $footer));
136 public function htmlAlert($identifier, $message=NULL, $cssStyle=
"alert-warning") {
137 return $this->addHtmlComponent(
new HtmlAlert($identifier, $message, $cssStyle));
146 return $this->addHtmlComponent(
new HtmlAccordion($identifier));
156 return $this->addHtmlComponent(
new HtmlCarousel($identifier, $images));
165 return $this->addHtmlComponent(
new HtmlTabs($identifier));
176 $listGroup->addItems($items);
177 return $this->addHtmlComponent($listGroup);
187 public function htmlModal($identifier, $title=
"", $content=
"", $buttonCaptions=array()) {
188 return $this->addHtmlComponent(
new HtmlModal($identifier, $title, $content, $buttonCaptions));
200 public function htmlSplitbutton($identifier,$value=
"", $items=array(), $cssStyle=
"btn-default", $onClick=NULL) {
201 return $this->addHtmlComponent(
new HtmlSplitbutton($identifier, $value, $items, $cssStyle,$onClick));
221 public function htmlBreadcrumbs($identifier,$elements=array(),$autoActive=
true,$startIndex=0,$hrefFunction=NULL){
222 return $this->addHtmlComponent(
new HtmlBreadcrumbs($identifier,$elements,$autoActive,$startIndex,$hrefFunction));
234 public function htmlPagination($identifier,$from=1,$to=1,$active=NULL,$countVisible=NULL){
235 return $this->addHtmlComponent(
new HtmlPagination($identifier,$from,$to,$active,$countVisible));
247 return $this->addHtmlComponent(
new HtmlGridSystem($identifier,$numRows,$numCols));
htmlInputgroup($identifier)
Return a new Bootstrap Html InputGroup.
htmlGlyphButton($identifier, $glyphIcon=0, $value="", $cssStyle=NULL, $onClick=NULL)
Return a new Bootstrap Html Glyphbutton.
htmlPanel($identifier, $content=NULL, $header=NULL, $footer=NULL)
Return a new Bootstrap Html Panel.
htmlDropdown($identifier, $value="", $items=array(), $cssStyle=NULL, $size=NULL)
Return a new Bootstrap Html Dropdown.
htmlButtontoolbar($identifier, $elements=array(), $cssStyle=NULL, $size=NULL)
Return a new Bootstrap Html Dropdown.
htmlSplitbutton($identifier, $value="", $items=array(), $cssStyle="btn-default", $onClick=NULL)
Return a new Bootstrap Html SplitButton.
htmlButton($identifier, $value="", $cssStyle=null, $onClick=null)
Return a new Bootstrap Html Button.
htmlNavbar($identifier, $brand="Brand", $brandHref="#")
Return a new Bootstrap Html Navbar.
htmlListgroup($identifier, $items=array(), $tagName="ul")
Return a new Bootstrap Html listGroup.
htmlProgressbar($identifier, $style="info", $value=0, $max=100, $min=0)
Return a new Bootstrap Html Progressbar.
htmlGridSystem($identifier, $numRows=1, $numCols=NULL)
Return a new Bootstrap Html Grid system.
htmlAlert($identifier, $message=NULL, $cssStyle="alert-warning")
Return a new Bootstrap Html Alert.
htmlModal($identifier, $title="", $content="", $buttonCaptions=array())
Return a new Bootstrap Html modal dialog.
htmlTabs($identifier)
Return a new Bootstrap Html tabs.
htmlCarousel($identifier, $images=NULL)
Return a new Bootstrap Html Carousel.
htmlBreadcrumbs($identifier, $elements=array(), $autoActive=true, $startIndex=0, $hrefFunction=NULL)
Return a new Bootstrap Html Breadcrumbs.
htmlAccordion($identifier)
Return a new Bootstrap Accordion.
__construct($autoCompile=true)
htmlPagination($identifier, $from=1, $to=1, $active=NULL, $countVisible=NULL)
Return a new Bootstrap Html Pagination.
htmlButtongroups($identifier, $values=array(), $cssStyle=NULL, $size=NULL)
Return a new Bootstrap Html Buttongroups.
Composant Twitter Bootstrap Accordion.
Twitter Bootstrap Alert component.
Twitter Bootstrap Breadcrumbs component.
Composant Twitter Bootstrap Carousel.
Twitter Bootstrap HTML Dropdown component.
Composant Twitter Bootstrap Grid system.
Composant Twitter Bootstrap Listgroup.
Twitter Bootstrap HTML Modal component.
Twitter Bootstrap HTML Navbar component.
Composant Twitter Bootstrap panel.