diff options
author | knut <> | 2006-02-02 18:10:17 +0000 |
---|---|---|
committer | knut <> | 2006-02-02 18:10:17 +0000 |
commit | 6b3c986a0a4634335b58ddf83a34032b5b783fce (patch) | |
tree | fffc7e9c8e6a266cf7d16c9db64ee2f57c0e776c /framework/Web/UI/TPage.php | |
parent | e1ffc982a948fe3d4e46465dc11a633ee37dc03c (diff) |
added missing page level and class level docblocks
Diffstat (limited to 'framework/Web/UI/TPage.php')
-rw-r--r-- | framework/Web/UI/TPage.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index 4e23681a..5f583f0b 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -1,4 +1,14 @@ <?php
+/**
+ * TPage class file
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ */
//Prado::using('System.Web.UI.*');
Prado::using('System.Web.UI.WebControls.*');
@@ -8,6 +18,15 @@ Prado::using('System.Web.UI.TForm'); Prado::using('System.Web.UI.TClientScriptManager');
//Prado::using('System.Web
+
+/**
+ * TPage class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ * @since 3.0
+ */
class TPage extends TTemplateControl
{
const FIELD_POSTBACK_TARGET='PRADO_POSTBACK_TARGET';
|