Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 343 Bytes

README.textile

File metadata and controls

14 lines (11 loc) · 343 Bytes

Usage

with DebugKit

First, put `debug_kit_setting’ directory on app/plugins in your CakePHP application.
Second, add the following code in app_controller.php.

<?php
class AppController extends Controller {
    public $components = array('DebugKit.Toolbar' => array('panels' => array('DebugKitSetting.Setting')));
}
?>