myclabs/muih

PHP and Javascrcipt helpers for creation of Bootstrap 3 UI elements

0.1.6 2014-05-20 09:42 UTC

This package is not auto-updated.

Last update: 2024-03-16 13:10:30 UTC


README

Build Status Coverage Status Latest Stable Version Total Downloads License

MUIH, for Myc-lab User Interface Helper, is a PHP and Javascript library containing helpers for creation of Bootstrap 3 UI elements.

It is aiming to provide plain php objects for html/js component and helper for Zend1, Zend2 and twig(to be implemented).

Usage:

$button = new Button('Some Label', 'info');
$button->display();

This will echo a simple html button. Alternatively, you can use render() to get the code.

$modal = new Modal('Some Content');

$modal->setHeaderContent('Some Title');
$modal->addAttribute('id', 'some_id');
$modal->getBody()->addClass('some-class');

$modal->display();

This will echo a modal #some_id element, with body having .some-class class.

echo $this->button('Show Modal')->showModal('some_id');

You can also use helper fer Zend1 and Zend2.