]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/framework/Web/UI/WebControls/TTableHeaderRow.php
0e42a416060b3f0517f8d28ca14578d67fa7003d
[bacula/bacula] / gui / baculum / framework / Web / UI / WebControls / TTableHeaderRow.php
1 <?php
2 /**
3  * TTableHeaderRow class file
4  *
5  * @author Qiang Xue <qiang.xue@gmail.com>
6  * @link http://www.pradosoft.com/
7  * @copyright Copyright &copy; 2005-2014 PradoSoft
8  * @license http://www.pradosoft.com/license/
9  * @package System.Web.UI.WebControls
10  */
11
12 /**
13  * Includes TTableRow class.
14  */
15 Prado::using('System.Web.UI.WebControls.TTableRow');
16
17 /**
18  * TTableHeaderRow class.
19  *
20  * TTableHeaderRow displays a table header row.
21  *
22  * @author Qiang Xue <qiang.xue@gmail.com>
23  * @package System.Web.UI.WebControls
24  * @since 3.0.1
25  */
26 class TTableHeaderRow extends TTableRow
27 {
28         /**
29          * @return string location of a row in a table. Always returns 'Header'.
30          */
31         public function getTableSection()
32         {
33                 return 'Header';
34         }
35
36         /**
37          * @param string location of a row in a table.
38          * @throws TInvalidOperationException if this method is invoked
39          */
40         public function setTableSection($value)
41         {
42                 throw new TInvalidOperationException('tableheaderrow_tablesection_readonly');
43         }
44 }
45