zeleznypa/nette-session-debug-bar

This package is abandoned and no longer maintained. No replacement package was suggested.

Simple DebugBar to show content of Nette session.

0.3.1 2013-09-11 10:07 UTC

This package is not auto-updated.

Last update: 2016-01-10 10:32:23 UTC


README

Pavel Železný (2bfree), 2013 (www.pavelzelezny.cz)

Requirements

Nette Framework 2.0.12 or higher. (PHP 5.3 edition)

Documentation

Simple DebugBar to show content of session.

Instalation

Prefered way to intall is by Composer

{
    "require":{
        "zeleznypa/nette-session-debug-bar": "dev-master"
    }
}

Setup

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

common:
    services:
        sessionPanel:
            class: \Zeleznypa\Nette\Diagnostics\SessionPanel
            arguments:
                - @application
                - @session

    nette:
        debugger:
            strictMode: true
            bar:
                - @sessionPanel

You can also specify section to hide in debugbar by add setup section in service definition.

common:
    services:
        sessionPanel:
            class: \Zeleznypa\Nette\Diagnostics\SessionPanel
            setup:
                - hideSection('Nette.Http.UserStorage/')
                - hideSection('Nette.Forms.Form/CSRF')
            arguments:
                - @application
                - @session