diff options
Diffstat (limited to 'lib/prado/framework/Web/UI/WebControls/TTableHeaderRow.php')
-rw-r--r-- | lib/prado/framework/Web/UI/WebControls/TTableHeaderRow.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/prado/framework/Web/UI/WebControls/TTableHeaderRow.php b/lib/prado/framework/Web/UI/WebControls/TTableHeaderRow.php new file mode 100644 index 0000000..7eaedc3 --- /dev/null +++ b/lib/prado/framework/Web/UI/WebControls/TTableHeaderRow.php @@ -0,0 +1,45 @@ +<?php +/** + * TTableHeaderRow class file + * + * @author Qiang Xue <qiang.xue@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 + */ + +/** + * Includes TTableRow class. + */ +Prado::using('System.Web.UI.WebControls.TTableRow'); + +/** + * TTableHeaderRow class. + * + * TTableHeaderRow displays a table header row. + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @package System.Web.UI.WebControls + * @since 3.0.1 + */ +class TTableHeaderRow extends TTableRow +{ + /** + * @return string location of a row in a table. Always returns 'Header'. + */ + public function getTableSection() + { + return 'Header'; + } + + /** + * @param string location of a row in a table. + * @throws TInvalidOperationException if this method is invoked + */ + public function setTableSection($value) + { + throw new TInvalidOperationException('tableheaderrow_tablesection_readonly'); + } +} + |