1: <?php
2:
3: /**
4: * This file is part of the Tracy (https://tracy.nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Tracy;
9:
10:
11: /**
12: * Custom output for Debugger.
13: */
14: interface IBarPanel
15: {
16:
17: /**
18: * Renders HTML code for custom tab.
19: * @return string
20: */
21: function getTab();
22:
23: /**
24: * Renders HTML code for custom panel.
25: * @return string
26: */
27: function getPanel();
28:
29: }
30: