diff options
author | xue <> | 2006-05-04 20:00:46 +0000 |
---|---|---|
committer | xue <> | 2006-05-04 20:00:46 +0000 |
commit | 42df6f47862c2f1495ded49f758dbc46f9d9e930 (patch) | |
tree | ee849b9758bcbd5c1b1aac40761ce68417eba2bb /framework/Web/UI/WebControls/TTableFooterRow.php | |
parent | c00193d23726bcb05b1fe53c4dfb3fc38b0a22e5 (diff) |
Merge from 3.0 branch till 1023.
Diffstat (limited to 'framework/Web/UI/WebControls/TTableFooterRow.php')
-rw-r--r-- | framework/Web/UI/WebControls/TTableFooterRow.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TTableFooterRow.php b/framework/Web/UI/WebControls/TTableFooterRow.php new file mode 100644 index 00000000..3b178d52 --- /dev/null +++ b/framework/Web/UI/WebControls/TTableFooterRow.php @@ -0,0 +1,48 @@ +<?php
+/**
+ * TTableFooterRow class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ */
+
+/**
+ * Includes TTableRow class.
+ */
+Prado::using('System.Web.UI.WebControls.TTableRow');
+
+/**
+ * TTableFooterRow class.
+ *
+ * TTableFooterRow displays a table footer row.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ * @since 3.0.1
+ */
+class TTableFooterRow extends TTableRow
+{
+ /**
+ * @return string location of a row in a table. Always returns 'Footer'.
+ */
+ public function getTableSection()
+ {
+ return 'Footer';
+ }
+
+ /**
+ * @param string location of a row in a table.
+ * @throws TInvalidOperationException if this method is invoked
+ */
+ public function setTableSection($value)
+ {
+ throw new TInvalidOperationException('tablefooterrow_tablesection_readonly');
+ }
+}
+
+?>
\ No newline at end of file |