diff options
Diffstat (limited to 'lib/prado/framework/Web/UI/WebControls/THeader6.php')
-rw-r--r-- | lib/prado/framework/Web/UI/WebControls/THeader6.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/prado/framework/Web/UI/WebControls/THeader6.php b/lib/prado/framework/Web/UI/WebControls/THeader6.php new file mode 100644 index 0000000..ae876f8 --- /dev/null +++ b/lib/prado/framework/Web/UI/WebControls/THeader6.php @@ -0,0 +1,34 @@ +<?php +/** + * THeader6 class file + * + * @author Brad Anderson <javalizard@gmail.com> + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2005-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT + * @package System.Web.UI.WebControls + */ + +/** + * THeader6 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.2 + */ + +class THeader6 extends THtmlElement { + + /** + * @return string tag name + */ + public function getDefaultTagName() + { + return 'h6'; + } + +} |