Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * TTableFooterRow class file
4
 *
5
 * @author Qiang Xue <qiang.xue@gmail.com>
6
 * @link http://www.pradosoft.com/
7
 * @copyright Copyright &copy; 2005-2008 PradoSoft
8
 * @license http://www.pradosoft.com/license/
9
 * @version $Id: TTableFooterRow.php 2541 2008-10-21 15:05:13Z qiang.xue $
10
 * @package System.Web.UI.WebControls
11
 */
12
 
13
/**
14
 * Includes TTableRow class.
15
 */
16
Prado::using('System.Web.UI.WebControls.TTableRow');
17
 
18
/**
19
 * TTableFooterRow class.
20
 *
21
 * TTableFooterRow displays a table footer row.
22
 *
23
 * @author Qiang Xue <qiang.xue@gmail.com>
24
 * @version $Id: TTableFooterRow.php 2541 2008-10-21 15:05:13Z qiang.xue $
25
 * @package System.Web.UI.WebControls
26
 * @since 3.0.1
27
 */
28
class TTableFooterRow extends TTableRow
29
{
30
	/**
31
	 * @return string location of a row in a table. Always returns 'Footer'.
32
	 */
33
	public function getTableSection()
34
	{
35
		return 'Footer';
36
	}
37
 
38
	/**
39
	 * @param string location of a row in a table.
40
	 * @throws TInvalidOperationException if this method is invoked
41
	 */
42
	public function setTableSection($value)
43
	{
44
		throw new TInvalidOperationException('tablefooterrow_tablesection_readonly');
45
	}
46
}
47