tomasstrejcek/nette-session-panel

Nette DebugBar panel (port of kdyby/nette-session-panel for nette 2.0.x), that allows you inspect your sessions.

v1.0.0 2012-08-25 15:46 UTC

This package is not auto-updated.

Last update: 2024-09-24 02:34:03 UTC


README

Requirements

Nette Framework 2.0.x or higher and PHP 5.3 or higher.

Documentation

Simple DebugBar to show contents of session.

Examples

To load SessionPanel into the DebugBar insert following code into config.neon.

extensions:
	debugger.session: Kdyby\Diagnostics\SessionPanel\SessionPanelExtension

You can also specify a section to hide in the DebugBar by add setup section in service definition.

services:
	debugger.session.panel:
		setup:
			- hideSection('Nette.Http.UserStorage/')
			- hideSection('Nette.Forms.Form/CSRF')