blob: b36cb5a9197c50f2170c293a9a739c29fd7f3ede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
/**
* THeader1 class file
*
* @author Brad Anderson <javalizard@gmail.com>
* @link https://github.com/pradosoft/prado
* @copyright Copyright © 2005-2016 The PRADO Group
* @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
* @package System.Web.UI.WebControls
*/
/**
* THeader1 class
*
* This is a simple class to enable your application to have headers but then have your
* theme be able to redefine the TagName
* This is also useful for the {@link TWebControlDecorator} (used by themes).
*
* @author Brad Anderson <javalizard@gmail.com>
* @package System.Web.UI.WebControls
* @since 3.2a
*/
class THeader1 extends THtmlElement {
/**
* @return string tag name
*/
public function getDefaultTagName()
{
return 'h1';
}
}
|