]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/framework/Web/UI/WebControls/TTableFooterRow.php
baculum: New Baculum API and Baculum Web
[bacula/bacula] / gui / baculum / framework / Web / UI / WebControls / TTableFooterRow.php
1 <?php
2 /**
3  * TTableFooterRow class file
4  *
5  * @author Qiang Xue <qiang.xue@gmail.com>
6  * @link https://github.com/pradosoft/prado
7  * @copyright Copyright &copy; 2005-2016 The PRADO Group
8  * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT
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  * TTableFooterRow class.
19  *
20  * TTableFooterRow displays a table footer row.
21  *
22  * @author Qiang Xue <qiang.xue@gmail.com>
23  * @package System.Web.UI.WebControls
24  * @since 3.0.1
25  */
26 class TTableFooterRow extends TTableRow
27 {
28         /**
29          * @return string location of a row in a table. Always returns 'Footer'.
30          */
31         public function getTableSection()
32         {
33                 return 'Footer';
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('tablefooterrow_tablesection_readonly');
43         }
44 }
45