| 1 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* TPlaceHolder class file
|
|
|
4 |
*
|
|
|
5 |
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
|
6 |
* @link http://www.pradosoft.com/
|
|
|
7 |
* @copyright Copyright © 2005-2008 PradoSoft
|
|
|
8 |
* @license http://www.pradosoft.com/license/
|
|
|
9 |
* @version $Id: TPlaceHolder.php 2541 2008-10-21 15:05:13Z qiang.xue $
|
|
|
10 |
* @package System.Web.UI.WebControls
|
|
|
11 |
*/
|
|
|
12 |
|
|
|
13 |
/**
|
|
|
14 |
* TPlaceHolder class
|
|
|
15 |
*
|
|
|
16 |
* TPlaceHolder reserves a place on a template, where static texts or controls
|
|
|
17 |
* may be inserted. You may add or remove texts or child controls of TPlaceHolder
|
|
|
18 |
* by manipulating the {@link TControl::getControls Controls} property.
|
|
|
19 |
*
|
|
|
20 |
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
|
21 |
* @version $Id: TPlaceHolder.php 2541 2008-10-21 15:05:13Z qiang.xue $
|
|
|
22 |
* @package System.Web.UI.WebControls
|
|
|
23 |
* @since 3.0
|
|
|
24 |
*/
|
|
|
25 |
class TPlaceHolder extends TControl
|
|
|
26 |
{
|
|
|
27 |
}
|
|
|
28 |
|