]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/framework/Web/UI/WebControls/THeader5.php
baculum: New Baculum API and Baculum Web
[bacula/bacula] / gui / baculum / framework / Web / UI / WebControls / THeader5.php
1 <?php
2 /**
3  * THeader5 class file
4  *
5  * @author Brad Anderson <javalizard@gmail.com>
6  * @link https://github.com/pradosoft/prado
7  * @copyright Copyright &copy; 2005-2016 The PRADO Group
8  * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
9  * @package System.Web.UI.WebControls
10  */
11
12 /**
13  * THeader5 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 THeader5 extends THtmlElement {
25
26         /**
27          * @return string tag name
28          */
29         public function getDefaultTagName()
30         {
31                 return 'h5';
32         }
33
34 }