2017 © Pedro PelĂĄez
 

cakephp-plugin table-helper

TableHelper for CakePHP 3.x

image

jelmerd/table-helper

TableHelper for CakePHP 3.x

  • Thursday, December 8, 2016
  • by JelmerD
  • Repository
  • 2 Watchers
  • 4 Stars
  • 298 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 2 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

TableHelper for CakePHP 3.x

Build Status, (*1)

Demo and examples, (*2)

In case the live example is down, you can see the examples here too., (*3)

Installation

The easiest way to install the plugin is to use Composer. Install Composer in the app folder of your application and then simply run:, (*4)

php composer.phar require jelmerd/table-helper
// or if composer is installed globally
composer require jelmerd/table-helper

You can also clone the repository in the Plugin folder:, (*5)

$ cd src/plugins
$ git submodule add git@github.com:JelmerD/TableHelper.git

Once the plugin is in place, load it in your src/config/bootstrap.php by adding this line:, (*6)

Plugin::load('TableHelper');
// when developing via a submodule, use
Plugin::load('TableHelper', ['autoload' => true]);

Now to use the Helper, simply load it in your Controller:, (*7)

public $helpers = array('TableHelper.Table');

The Versions

24/11 2013

2.0.0

2.0.0.0 http://github.com/JelmerD/TableHelper

TableHelper for CakePHP 2.x

  Sources   Download

MIT

The Requires