gezeresolutionsweb / cakeganache
This is a CakePHP 2.x plugin that overload core helpers to support Twitter Bootstrap 2.x + extras.
Installs: 3 004
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 1
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.3.0
- composer/installers: 1.*
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-10-26 18:33:28 UTC
README
What about a good cake ganache ?
This is a CakePHP 2.x plugin that overload core helpers to support Twitter Bootstrap 2.x + extras
- Bootstrap 2.x Helpers
- GanacheHtmlHelper
- GanacheFormHelper
- GanacheNavbarHelper
- GanachePaginationHelper
- GanacheCalendarHelper
- GanacheTablenavbarHelper
- FontAwesome 4.x Helpers
- Javascript goddies
- ganache-tablenavbar.js
- ganache-chained.js
Installation
Composer
composer require gezeresolutionsweb/cakeganache:*
Manual
Extract the plugin in the app/Plugin folder and load the plugin in your bootstrap.php file.
CakePlugin::load('CakeGanache');
How to use?
Helpers are developped with respect of core helper in mind. So load the helpers in your controller.
public $helpers = array( 'Html' => 'CakeGanache.GanacheHtml', 'Form' => 'CakeGanache.GanacheForm', 'Paginator' => 'CakeGanache.GanachePaginator', 'Navbar' => 'CakeGanache.GanacheNavbar' 'Tablenavbar' => 'CakeGanache.GanacheTablenavbar' 'Calendar' => 'CakeGanache.GanacheCalendar' ) ;
Related and inspirated projects
- http://mikael-capelle.fr CakeHelpers
- WebAndCow Cakephp Bootstrap Helpers