summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/THeader4.php
diff options
context:
space:
mode:
authorjavalizard <>2010-04-18 02:43:10 +0000
committerjavalizard <>2010-04-18 02:43:10 +0000
commitc8b27e28e32cd8a93c2203b2c391d0b8e8ecf86a (patch)
treec40321e85699920c408649d5c902158f86dadd8d /framework/Web/UI/WebControls/THeader4.php
parent826d1ea2931d2af3fdc0906ad6f0c968d26a8856 (diff)
Added the THeader1-6, and fixed up the THtmlElement a touch.
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';
+ }
+
+}