tomasstrejcek/nette-requests-panel

There is no license information available for the latest version (dev-master) of this package.

Nette DebugBar panel, that allows you to view all app requests.

Maintainers

Package info

github.com/tomasstrejcek/RequestsPanel

Homepage

pkg:composer/tomasstrejcek/nette-requests-panel

Statistics

Installs: 947

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2013-03-11 13:29 UTC

This package is not auto-updated.

Last update: 2026-03-14 21:07:15 UTC


README

Installation

Best way via Composer:

$ composer require tomasstrejcek/nette-requests-panel:dev-master

Usage in BasePresenter:

use \Extras\Debug\RequestsPanel;

public function startup() {
	parent::startup();
	RequestsPanel::register();
}

Usage anywhere:

use \Extras\Debug\RequestsPanel;
RequestsPanel::dump($variable, 'My Variable'); // label can be omitted

Example:

Screenshot