Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 340 Bytes

File metadata and controls

14 lines (11 loc) · 340 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 {
    var $components = array('DebugKit.Toolbar' => array('panels' => array('DebugKitSetting.setting')));
}
?>