summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TLiteral.php
diff options
context:
space:
mode:
authorxue <>2007-02-04 03:30:32 +0000
committerxue <>2007-02-04 03:30:32 +0000
commit633ae42f1c6f7069ba155ffa1bbc3b42fe189bb4 (patch)
tree0df0a4d8a372714f72b57483bd2efcbb84158107 /framework/Web/UI/WebControls/TLiteral.php
parentebe35517b35dc87eaec1333263cb78e9bd4ef2e1 (diff)
Added renderer feature to TRepeater.
Diffstat (limited to 'framework/Web/UI/WebControls/TLiteral.php')
-rw-r--r--framework/Web/UI/WebControls/TLiteral.php28
1 files changed, 27 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TLiteral.php b/framework/Web/UI/WebControls/TLiteral.php
index 02061304..3ebb4039 100644
--- a/framework/Web/UI/WebControls/TLiteral.php
+++ b/framework/Web/UI/WebControls/TLiteral.php
@@ -31,7 +31,7 @@
* @package System.Web.UI.WebControls
* @since 3.0
*/
-class TLiteral extends TControl
+class TLiteral extends TControl implements IDataRenderer
{
/**
* @return string the static text of the TLiteral
@@ -51,6 +51,32 @@ class TLiteral extends TControl
}
/**
+ * Returns the static text of the TLiteral.
+ * This method is required by {@link IDataRenderer}.
+ * It is the same as {@link getText()}.
+ * @return string the static text of the TLiteral
+ * @see getText
+ * @since 3.1.0
+ */
+ public function getData()
+ {
+ return $this->getText();
+ }
+
+ /**
+ * Sets the static text of the TLiteral.
+ * This method is required by {@link IDataRenderer}.
+ * It is the same as {@link setText()}.
+ * @param string the static text of the TLiteral
+ * @see setText
+ * @since 3.1.0
+ */
+ public function setData($value)
+ {
+ $this->setText($value);
+ }
+
+ /**
* @return boolean whether the rendered text should be HTML-encoded. Defaults to false.
*/
public function getEncode()