]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/framework/Web/UI/WebControls/THeader6.php
164c391cfa74f85c343f066e14cf8b2b23d95fae
[bacula/bacula] / gui / baculum / framework / Web / UI / WebControls / THeader6.php
1 <?php
2 /**
3  * THeader6 class file
4  *
5  * @author Brad Anderson <javalizard@gmail.com>
6  * @link http://www.pradosoft.com/
7  * @copyright Copyright &copy; 2005-2014 PradoSoft
8  * @license http://www.pradosoft.com/license/
9  * @package System.Web.UI.WebControls
10  */
11
12 /**
13  * THeader6 class
14  *
15  * This is a simple class to enable your application to have headers but then have your
16  * theme be able to redefine the TagName
17  * This is also useful for the {@link TWebControlDecorator} (used by themes).
18  *
19  * @author Brad Anderson <javalizard@gmail.com>
20  * @package System.Web.UI.WebControls
21  * @since 3.2
22  */
23
24 class THeader6 extends THtmlElement {
25
26         /**
27          * @return string tag name
28          */
29         public function getDefaultTagName()
30         {
31                 return 'h6';
32         }
33
34 }