1
0
mirror of https://github.com/dg/dibi.git synced 2025-10-22 02:06:27 +02:00

updated for new Nette Debug Bar

This commit is contained in:
David Grudl
2010-04-01 05:24:13 +02:00
parent 22d41ca3c1
commit 3f6a075251
8 changed files with 1049 additions and 351 deletions

View File

@@ -0,0 +1,44 @@
<?php
/**
* Nette Framework
*
* @copyright Copyright (c) 2004, 2010 David Grudl
* @license http://nettephp.com/license Nette license
* @link http://nettephp.com
* @category Nette
* @package Nette
*/
/*namespace Nette;*/
/**
* Custom output for Nette\Debug.
*
* @copyright Copyright (c) 2004, 2010 David Grudl
* @package Nette
*/
interface IDebugPanel
{
/**
* Renders HTML code for custom tab.
* @return void
*/
function getTab();
/**
* Renders HTML code for custom panel.
* @return void
*/
function getPanel();
/**
* Returns panel ID.
* @return string
*/
function getId();
}