/CakeUI

Plugin to improve user interface of cakephp applications.

Primary LanguageJavaScriptMIT LicenseMIT

CakeUI

Introduction

Plugin to improve user interface of cakephp applications.

This plugin is based on Bootstrap.

DOC

Doc and examples page: http://cakeui-examples.2km.com.br

Install / Instalação

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';
}