myclabs / muih
PHP and Javascrcipt helpers for creation of Bootstrap 3 UI elements
Installs: 24 493
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 6
Forks: 0
Open Issues: 0
This package is not auto-updated.
Last update: 2024-11-09 16:00:59 UTC
README
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.