DluTwBootstrap is a Zend Framework 2 module facilitating usage of Twitter Bootstrap in ZF2 applications.
If you are new to DluTwBootstrap, first go to http://apps.zfdaily.com/dlutwbootstrap-demo to see it in action on-line.
- All four Twitter Bootstrap form types supported - Horizontal, Vertical, Inline, Search
- Supported form elements
- Button
- Checkbox
- Csrf
- File
- Hidden
- MultiCheckbox (not supported on Inline and Search forms)
- Multiselect (not supported on Inline and Search forms)
- Password
- Radio (not supported on Inline and Search forms)
- Reset
- Select
- Submit
- Text
- Textarea
- Inline help (hint), block help (description) and placeholder texts are supported with relevant elements
- Error state and messages (error messages are supported on Horizontal and Vertical forms)
- Highlighting required fields
- Prepend / append text to text input
- Multi-checkbox and radio can be optionally rendered inline
- Fieldset legend
- Zend Framework 2.0.0 - 218 (commit 2a398b4e81)
- Twitter Bootstrap v2.1.0
IMPORTANT: If the module does not seem to work, check the version of your ZF2 library and update to the version and commit specified above.
-
Go to your project's directory.
-
Clone this project into your
./vendor
directory as aDluTwBootstrap
module:git clone https://bitbucket.org/dlu/dlutwbootstrap.git ./vendor/DluTwBootstrap
-
Follow the Post installation steps bellow
- Go to your project's directory.
- Edit your
composer.json
file and add"dlu/dlutwbootstrap": "dev-master"
intorequire
section. - Run
php composer.phar install
(orphp composer.phar update
). - Follow the Post installation steps bellow
-
Copy everything from the module's
public
directory to<your app>/public
(i.e. Twitter Bootstrap and jQuery css files, js files and images). -
Enable the DluTwBootstrap module in your app config file
<your app>/config/application.config.php
:- add
'DluTwBootstrap',
undermodules
- add
-
Optional: Move
module.DluTwBootstrap.global.php
from the module's root directory to<your app>/config/autoload
directory. This sets the layout script to the one supplied with the module to load all necessary css and js dependencies. (Do not do this if you have your own layout and you already have the Twitter Bootstrap environment set-up properly in your project!)
To check that you have installed the module properly and to see it in action, install the DluTwBootstrap Demo module. The Demo module is the easiest and quickest way to start working with the DluTwBootstrap module as it clearly shows the rendered output (e.g. a form) 'side by side' with the actual source code used to produce that output. Recommended!