Wallogit.com
2017 © Pedro Peláez
php ui framework
Phpui is a php only Ui framework.
, (*1)
Write your code in pure php and DYnamically generate the Html,Javascript,Css etc, (*2)
composer require mugasho/phpui
Create a new html document object, (*3)
$htmlDoc=new PhpUi\HtmlDocument('Hello',Lang::$english); $htmlDoc->addClass(Classes::$content); $htmlDoc->setMetaViewport('device-width',1.0,0,'minimal-ui'); $htmlDoc->setMetaDescription('PhpUi is a php only extensible web framework'); $htmlDoc->setMetaKeywords('php,ui,phpUI,web,framework'); $htmlDoc->setMetaAuthor('Script-floor'); //start printing element $htmlDoc->start(); //create the body $body=new PhpUi\UI(typeOf::$body); //add classes to $body $body->addClass(Classes::$containerFluid); $body->start(); //close the element with end method $body->end(); $htmlDoc->end();
Add other elements like buttons, lists etc. For example adding a button, (*4)
$button=new PhpUi\UI(typeOf::$button); $button->setText('hello'); $button->setId('btn1'); $button->start(); $button->end(); //create a div $div=new Php\UI(typeOf::$div); $div->setId('div1'); $div->start(); $div->end();
happy Coding, (*5)