PageRenderTime 61ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/www/libs/nette-dev/IDebugPanel.php

https://github.com/bazo/Mokuji
PHP | 42 lines | 7 code | 8 blank | 27 comment | 0 complexity | 45d8fe3ecdc859846ace60d7906e0d13 MD5 | raw file
Possible License(s): BSD-3-Clause, MIT
  1. <?php
  2. /**
  3. * Nette Framework
  4. *
  5. * @copyright Copyright (c) 2004, 2010 David Grudl
  6. * @license http://nettephp.com/license Nette license
  7. * @link http://nettephp.com
  8. * @category Nette
  9. * @package Nette
  10. */
  11. /**
  12. * Custom output for Nette\Debug.
  13. *
  14. * @copyright Copyright (c) 2004, 2010 David Grudl
  15. * @package Nette
  16. */
  17. interface IDebugPanel
  18. {
  19. /**
  20. * Renders HTML code for custom tab.
  21. * @return void
  22. */
  23. function getTab();
  24. /**
  25. * Renders HTML code for custom panel.
  26. * @return void
  27. */
  28. function getPanel();
  29. /**
  30. * Returns panel ID.
  31. * @return string
  32. */
  33. function getId();
  34. }