public function __toString()
 {
     /** @var \view_dropdown_menu */
     return View::render('DropdownMenu', array('dropdown_menu' => $this));
 }
Beispiel #2
0
 function __toString()
 {
     /** @var \view_navbar */
     return View::render('Navbar', array('navbar' => $this));
 }
Beispiel #3
0
 function __toString()
 {
     if ($this->_dropdown_menu) {
         /** @var \view_button_dropdown */
         return View::render('ButtonDropdown', array('button' => $this));
     } else {
         /** @var \view_button */
         return View::render('Button', array('button' => $this));
     }
 }
 function __toString()
 {
     /** @var \view_breadcrumbs */
     return View::render('Breadcrumbs', array('breadcrumbs' => $this));
 }
 function __toString()
 {
     /** @var \view_button_group */
     return View::render('ButtonGroup', array('button_group' => $this));
 }
 function __toString()
 {
     /** @var \view_progress */
     return View::render('Progress', array('progress' => $this));
 }
Beispiel #7
0
 function __toString()
 {
     /** @var \view_icon */
     return View::render('Icon', array('icon' => $this));
 }
Beispiel #8
0
 public function __toString()
 {
     /** @var \view_pager */
     return View::render('Pager', array('pager' => $this));
 }
 function __toString()
 {
     /** @var \view_pagination */
     return View::render('Pagination', array('pagination' => $this));
 }
Beispiel #10
0
 function __toString()
 {
     /** @var \view_alert */
     return View::render('Alert', array('alert' => $this));
 }
 function __toString()
 {
     /** @var \view_label */
     return View::render('Label', array('label' => $this));
 }
 function __toString()
 {
     /** @var \view_button_toolbar */
     return View::render('ButtonToolbar', array('button_toolbar' => $this));
 }
Beispiel #13
0
 function __toString()
 {
     /** @var \view_modal */
     return View::render('Modal', array('modal' => $this));
 }
 function __toString()
 {
     /** @var \view_tabs */
     return View::render('Tabs', array('tabs' => $this));
 }