pauloamgomes / cockpit-cms-kint
Kint addon for Cockpit Headless CMS
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^7.0
- kint-php/kint: ^3.0@dev
- kint-php/kint-js: ^2.0
This package is auto-updated.
Last update: 2023-05-29 01:23:16 UTC
README
This addon extends Cockpit CMS (Next) core by providing debug functionality based on the Kint PHP Library.
Installation
Installation can be performed with or without php composer (But keep in mind that after downloaded/extracted the addon must be named Kint).
Without php composer
- Download zip and extract to 'your-cockpit-docroot/addons/Kint' (e.g. cockpitcms/addons/Kint)
- Install Kint dependency using composer
$ cd your-cockpit-docroot/addons/Kint
$ composer install
Using php composer
- Install addon using composer
$ cd your-cockpit-docroot/addons
$ composer create-project pauloamgomes/cockpit-cms-kint Kint
Configuration
No configuration is required.
Usage
The Cockpit Kint is a developer addon, to be used for example when implementing your own addons, there are two basic methods:
- Dump - will dump the variables to the screen
$this->app->module('kint')->dump($var1, $var2, ...);
- Console - will dump the variables to the browser console
$this->app->module('kint')->console($var1, $var2, ...);
If the debug functions are called during an API request, the output will be logged using the HTTP headers instead:
Copyright and license
Copyright 2018 pauloamgomes under the MIT license.