summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/THeader4.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/Web/UI/WebControls/THeader4.php')
-rw-r--r--framework/Web/UI/WebControls/THeader4.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/THeader4.php b/framework/Web/UI/WebControls/THeader4.php
new file mode 100644
index 00000000..d673d4c2
--- /dev/null
+++ b/framework/Web/UI/WebControls/THeader4.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * THeader4 class file
+ *
+ * @author Brad Anderson <javalizard@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright &copy; 2005-2010 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Id: THeader4.php 2590 2008-12-10 11:34:24Z carlgmathisen $
+ * @package System.Web.UI.WebControls
+ */
+
+/**
+ * THeader4 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>
+ * @version $Id: THeader4.php 2541 2008-10-21 15:05:13Z javalizard $
+ * @package System.Web.UI.WebControls
+ * @since 3.2
+ */
+
+class THeader4 extends THtmlElement {
+
+ /**
+ * @return string tag name
+ */
+ protected function getDefaultTagName()
+ {
+ return 'h4';
+ }
+
+}