Plugin to improve user interface of cakephp applications.
This plugin is based on Bootstrap.
Doc and examples page: http://cakeui-examples.2km.com.br
Clone github:
cd your_app_dir/Plugin git clone https://github.com/2km/CakeUI.git
Load on bootstrap.php
CakePlugin::load('CakeUI');
Config AppController.php
public $helpers = array( 'Form'=> array('className' => 'CakeUI.BootstrapForm'), 'Html'=> array('className' => 'CakeUI.BootstrapHtml') ); public function beforeFilter(){ $this->layout='CakeUI.default'; }