Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

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