gezeresolutionsweb / cakeganache
这是一个 CakePHP 2.x 插件,通过覆盖核心助手来支持 Twitter Bootstrap 2.x 及额外功能。
0.1.1
2017-08-07 14:29 UTC
Requires
- php: >=5.3.0
- composer/installers: 1.*
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2024-09-14 17:58:59 UTC
README
关于美味的蛋糕甘露呢?
这是一个 CakePHP 2.x 插件,通过覆盖核心助手来支持 Twitter Bootstrap 2.x 及额外功能
- Bootstrap 2.x 助手
- GanacheHtmlHelper
- GanacheFormHelper
- GanacheNavbarHelper
- GanachePaginationHelper
- GanacheCalendarHelper
- GanacheTablenavbarHelper
- FontAwesome 4.x 助手
- JavaScript 小工具
- ganache-tablenavbar.js
- ganache-chained.js
安装
Composer
composer require gezeresolutionsweb/cakeganache:*
手动
将插件提取到 app/Plugin 文件夹中,并在您的 bootstrap.php 文件中加载插件。
CakePlugin::load('CakeGanache');
如何使用?
助手是考虑到核心助手而开发的。因此,在控制器中加载助手。
public $helpers = array( 'Html' => 'CakeGanache.GanacheHtml', 'Form' => 'CakeGanache.GanacheForm', 'Paginator' => 'CakeGanache.GanachePaginator', 'Navbar' => 'CakeGanache.GanacheNavbar' 'Tablenavbar' => 'CakeGanache.GanacheTablenavbar' 'Calendar' => 'CakeGanache.GanacheCalendar' ) ;
相关和灵感项目
- http://mikael-capelle.fr CakeHelpers
- WebAndCow Cakephp Bootstrap 助手