Mark Sch f6051286f7 Update Jsonable.md 7 年 前
..
Auth 4682879edc Docs for MultiColumn 8 年 前
Behavior f6051286f7 Update Jsonable.md 7 年 前
Controller 77581427a9 Use ShimController as base 10 年 前
Error fe7d510770 Fix up internal 404s and consolidate via trait 8 年 前
Helper 5e99e247f7 Fix up linkReset and linkComplete to be consistent with the rest of the API 9 年 前
I18n bd599521bb Docs 9 年 前
Network f9bf713613 Add docs and qrhelper stub 10 年 前
TestSuite 91c86e217a Use Shim plugin 11 年 前
Url 5e99e247f7 Fix up linkReset and linkComplete to be consistent with the rest of the API 9 年 前
View fe28b91814 Move RssView into own plugin. 11 年 前
Contributing.md 371cecf2c9 Update Contributing.md 8 年 前
Install.md 1bfa71c201 Update Install.md 8 年 前
README.md 34b5daeaef Docs for MultiColumn 8 年 前
Shims.md 10aba83315 Update Shims.md 9 年 前
Upgrade.md d805190191 docs 11 年 前

README.md

CakePHP Tools Plugin Documentation

Version notice

Installation

Upgrade Guide

Detailed Documentation - Quicklinks

Routing:

I18n:

  • I18n for language detection and switching

ErrorHandler

Auth

Testing

Helpers:

Behaviors:

Basic enhancements of the core

Model

Extend the Tools plugin table and entity class to benefit from a few gotchas:

<?php
namespace App\Model\Table;

use Tools\Model\Table\Table;

class UsersTable extends Table {}

and

<?php
namespace App\Model\Entity;

use Tools\Model\Entity\Entity;

class User extends Entity {}

You can also make yourself your own AppTable and AppEntity class in your application and then extend those for each of the individual files - which I recommend for most flexibility.

Controller

<?php
namespace App\Controller;

use Tools\Controller\Controller;

class AppController extends Controller {

	public $components = ['Tools.Common'];

	public $helpers = ['Tools.Common', 'Tools.Time', 'Tools.Number', 'Tools.Format'];

}

Here we can also see some of the most useful components and helpers included right away.

The Common component for example will automatically provide:

  • Auto-trim on POST (to make - not only notEmpty - validation working properly).

The Tools plugin controller will allow you to:

  • Disable cache also works for older IE versions.

BC shims for easier migration from 2.x

It contains many shims to provide 2.x functionality when upgrading apps to 3.0. This eases migration as complete parts of the code, such as validation and other model property settings can be reused immediatelly without refactoring them right away.

Testing the Plugin

You can test using a local installation of phpunit or the phar version of it:

cd plugins/Tools
composer update // or: php composer.phar update
phpunit // or: php phpunit.phar

To test a specific file:

phpunit /path/to/class.php

Contributing

Your help is greatly appreciated.