[ Index ] |
|
Code source de PRADO 3.0.6 |
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 © 2005 PradoSoft 8 * @license http://www.pradosoft.com/license/ 9 * @version $Id: TTableFooterRow.php 1397 2006-09-07 07:55:53Z wei $ 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 1397 2006-09-07 07:55:53Z wei $ 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 48 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 21:07:04 2007 | par Balluche grâce à PHPXref 0.7 |