gintonicweb / twbs-theme
Twitter Bootstrap default theme for GintonicCMS
Installs: 990
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 5
Open Issues: 0
Type:cakephp-plugin
Requires
- cakephp/cakephp: ~3.0
- friendsofcake/bootstrap-ui: ~0.3
- gintonicweb/requirejs: ~0.1
- gintonicweb/websockets: dev-master
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is not auto-updated.
Last update: 2021-10-29 01:23:30 UTC
README
bootstrap
GintonicCMS theme based on twbs/bootstrap
Warning
This package is not maintained
Installation
Install the plugin using composer.
"gintonicweb/twbs-theme": "dev-master"
Load it in config/bootstrap.php
Plugin::load('TwbsTheme', ['bootstrap' => true]);
Add the following helpers to your src\View\AppView
public function initialize()
{
$this->loadHelper('Html', ['className' => 'BootstrapUI.Html']);
$this->loadHelper('Form', ['className' => 'BootstrapUI.Form']);
$this->loadHelper('Flash', ['className' => 'BootstrapUI.Flash']);
$this->loadHelper('Paginator', ['className' => 'BootstrapUI.Paginator']);
}