sfWebDebugPanelSymfonyVersion.class.php 853 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * sfWebDebugPanelSymfonyVersion adds a panel to the web debug toolbar with the symfony version.
  11. *
  12. * @package symfony
  13. * @subpackage debug
  14. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  15. * @version SVN: $Id: sfWebDebugPanelSymfonyVersion.class.php 11726 2008-09-22 12:38:17Z fabien $
  16. */
  17. class sfWebDebugPanelSymfonyVersion extends sfWebDebugPanel
  18. {
  19. public function getTitle()
  20. {
  21. return '<span id="sfWebDebugSymfonyVersion">'.SYMFONY_VERSION.'</span>';
  22. }
  23. public function getPanelTitle()
  24. {
  25. }
  26. public function getPanelContent()
  27. {
  28. }
  29. }