2017 © Pedro Peláez
 

cakephp-plugin twitter_bootstrap

CakePHP Bootstrap (for Twitter) Plugin

image

slywalker/twitter_bootstrap

CakePHP Bootstrap (for Twitter) Plugin

  • Thursday, September 5, 2013
  • by slywalker
  • Repository
  • 33 Watchers
  • 309 Stars
  • 20,722 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 103 Forks
  • 2 Open issues
  • 9 Versions
  • 3 % Grown

The README.md

Development of this plugin has moved BoostCake.

TwitterBootstrap Plugin for CakePHP2.x

The TwitterBootstrap Plugin provides an easy-to-use feature Bootstrap in CakePHP2.x, (*1)

Bootstrap, from Twitter, (*2)

This v1.5.7 supports Bootstrap v2.2.2, (*3)

Installation

This plugin

Composer, (*4)

{
  "repositories": [
    {
      "type": "package",
      "package": {
        "name": "twitter/bootstrap",
        "version": "dev-master",
        "source": {
          "url": "git://github.com/twitter/bootstrap",
          "type": "git",
          "reference": "master"
        },
        "require": {
          "composer/installers": "*"
        }
      },
      "packagist": false
    }
  ],
  "require": {
    "twitter/bootstrap": "dev-master",
    "slywalker/twitter_bootstrap": "dev-master"
  },
  "config": {
    "vendor-dir": "Vendor"
  }
}

Submodule, (*5)

$ cd /your_app_path
$ git submodule add git://github.com/slywalker/TwitterBootstrap.git Plugin/TwitterBootstrap
$ git submodule update --init --recursive

Clone, (*6)

$ cd /your_app_path/Plugin
$ git clone git://github.com/slywalker/TwitterBootstrap.git
$ cd TwitterBootstrap
$ git submodule update --init

Enable plugin

You need to enable the plugin your app/Config/bootstrap.php file:, (*7)

CakePlugin::load('TwitterBootstrap');

If you are already using CakePlugin::loadAll();, then this is not necessary., (*8)

bootstrap

Manual, (*9)

  • Download bootstrap: Bootstrap, from Twitter
  • Unzip that download.
  • Copy folders(css, img, js) in the resulting folder to app/webroot

Shell Command (need recess and uglifyjs), (*10)

(Copy less, js, img files to webroot and make css, js files), (*11)

$ cd /your_app
$ Console/cake TwitterBootstrap.copy
$ Console/cake TwitterBootstrap.make

Usage

Controller/AppController.php:, (*12)

<?php
class AppController extends Controller {

    public $helpers = array(
        'Session',
        'Html' => array('className' => 'TwitterBootstrap.BootstrapHtml'),
        'Form' => array('className' => 'TwitterBootstrap.BootstrapForm'),
        'Paginator' => array('className' => 'TwitterBootstrap.BootstrapPaginator'),
    );

}

View/Layout/default.ctp:, (*13)

<?php echo $this->Html->css('bootstrap.min'); ?>
<?php echo $this->Html->css('bootstrap-responsive.min'); ?>
<?php echo $this->Html->script('bootstrap.min'); ?>

Output form input as Bootstrap format, (*14)

<?php echo $this->Form->create('Sample', array('class' => 'form-horizontal')); ?>
    <fieldset>
        <legend>Extending form controls</legend>
        <?php echo $this->Form->input('field1', array(
            'label' => 'Prepended text',
            'type' => 'text',
            'class' => 'span2',
            'prepend' => '@',
            'helpBlock' => 'Here\'s some help text',
        )); ?>
        <?php echo $this->Form->input('field2', array(
            'label' => 'Appended text',
            'type' => 'text',
            'class' => 'span2',
            'append' => '.00',
            'helpInline' => 'Here\'s more help text',
        )); ?>
        <?php echo $this->Form->input('field3', array(
            'label' => 'Append and prepend',
            'type' => 'text',
            'class' => 'span2',
            'prepend' => '$',
            'append' => '.00',
        )); ?>
        <?php echo $this->Form->input('field4', array(
            'label' => 'Append with button',
            'type' => 'text',
            'class' => 'span2',
            'append' => array('Go!', array('wrap' => 'button', 'class' => 'btn')),
        )); ?>
        <?php echo $this->Form->input('field5', array(
            'label' => 'Inline checkboxes',
            'type' => 'select',
            'multiple' => 'checkbox inline',
            'options' => array('1', '2', '3'),
        )); ?>
        <?php echo $this->Form->input('field6', array(
            'label' => 'Checkboxes',
            'type' => 'select',
            'multiple' => 'checkbox',
            'options' => array(
                '1' => 'Option one is this and that¡ªbe sure to include why it\'s great',
                '2' => 'Option two can also be checked and included in form results',
                '3' => 'Option three can¡ªyes, you guessed it¡ªalso be checked and included in form results',
            ),
            'helpBlock' => '<strong>Note:</strong> Labels surround all the options for much larger click areas and a more usable form.',
        )); ?>
        <?php echo $this->Form->input('field7', array(
            'label' => 'Radio buttons',
            'type' => 'radio',
            'options' => array(
                '1' => 'Option one is this and that¡ªbe sure to include why it\'s great',
                '2' => 'Option two can is something else and selecting it will deselect option one',
            ),
        )); ?>
        <div class="form-actions">
            <?php echo $this->Form->submit('Save changes', array(
                'div' => false,
                'class' => 'btn btn-primary',
            )); ?>
            <button class="btn">Cancel</button>
        </div>
    </fieldset>
<?php echo $this->Form->end(); ?>

Output SessionHelper::flash as Bootstrap format, (*15)

// SomethingsController
$this->Session->setFlash(__('The something has been saved'), 'alert', array(
    'plugin' => 'TwitterBootstrap',
    'class' => 'alert-success'
));
$this->Session->setFlash(__('The something could not be saved. Please, try again.'), 'alert', array(
    'plugin' => 'TwitterBootstrap',
    'class' => 'alert-error'
));

// View
<?php echo $this->Session->flash(); ?>

// Auth
<?php echo $this->Session->flash('auth', array(
    'element' => 'alert',
    'params' => array('plugin' => 'TwitterBootstrap'),
)); ?>

Output Paginate as Bootstrap format, (*16)

// div.pagination.pagination-centered
<?php echo $this->Paginator->pagination(); ?>
// ul.pager
<?php echo $this->Paginator->pager(); ?>

Breadcrumb, (*17)

<?php echo $this->Html->breadcrumb(array(
    $this->Html->link('one', '/one'),
    $this->Html->link('two', '/two'),
    'three',
)); ?>

You can see more sample. access http://{webroot}/twitter_bootstrap, (*18)

License

The MIT License (MIT), (*19)

Copyright (c) 2012 Yasuo Harada, (*20)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:, (*21)

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software., (*22)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*23)

The Versions

05/09 2013

dev-master

9999999-dev https://github.com/slywalker/TwitterBootstrap

CakePHP Bootstrap (for Twitter) Plugin

  Sources   Download

MIT

The Requires

 

cakephp bootstrap twitter

05/09 2013

1.5.7

1.5.7.0 https://github.com/slywalker/TwitterBootstrap

CakePHP Bootstrap (for Twitter) Plugin

  Sources   Download

MIT

The Requires

 

cakephp bootstrap twitter

02/09 2013

1.5.6

1.5.6.0 https://github.com/slywalker/TwitterBootstrap

CakePHP Bootstrap (for Twitter) Plugin

  Sources   Download

MIT

The Requires

 

cakephp bootstrap twitter

25/01 2013

dev-develop

dev-develop https://github.com/slywalker/TwitterBootstrap

CakePHP Bootstrap (for Twitter) Plugin

  Sources   Download

MIT

The Requires

 

cakephp bootstrap twitter

11/01 2013

1.5.5

1.5.5.0 https://github.com/slywalker/TwitterBootstrap

CakePHP Bootstrap (for Twitter) Plugin

  Sources   Download

MIT

The Requires

 

cakephp bootstrap twitter

13/12 2012

1.5.4

1.5.4.0 https://github.com/slywalker/TitterBootstrap

Bootstrap (for Twitter) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp bootstrap

13/12 2012

1.5.3

1.5.3.0 https://github.com/slywalker/TitterBootstrap

Bootstrap (for Twitter) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp bootstrap

13/12 2012

1.5.2

1.5.2.0 https://github.com/slywalker/TitterBootstrap

Bootstrap (for Twitter) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp bootstrap

13/12 2012

1.5.1

1.5.1.0 https://github.com/slywalker/TitterBootstrap

Bootstrap (for Twitter) Plugin for CakePHP

  Sources   Download

MIT

The Requires

 

cakephp bootstrap