diff options
Diffstat (limited to 'framework/Web/UI')
-rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 18 | ||||
-rw-r--r-- | framework/Web/UI/TForm.php | 20 | ||||
-rw-r--r-- | framework/Web/UI/THtmlWriter.php | 18 | ||||
-rw-r--r-- | framework/Web/UI/TPage.php | 19 | ||||
-rw-r--r-- | framework/Web/UI/WebControls/TSafeHtml.php | 21 |
5 files changed, 89 insertions, 7 deletions
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 7b85dbab..0ff99aa2 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -1,4 +1,14 @@ <?php +/** + * TClientScriptManager 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 + */ /*class TPostBackOptions extends TComponent { @@ -72,6 +82,14 @@ */ Prado::using('System.Web.Javascripts.*'); +/** + * TClientScriptManager class + * + * @author Qiang Xue <qiang.xue@gmail.com> + * @version $Revision: $ $Date: $ + * @package System.Web.UI + * @since 3.0 + */ class TClientScriptManager extends TComponent { const SCRIPT_DIR='Web/Javascripts/js'; diff --git a/framework/Web/UI/TForm.php b/framework/Web/UI/TForm.php index 4cd7e5cc..839d6c52 100644 --- a/framework/Web/UI/TForm.php +++ b/framework/Web/UI/TForm.php @@ -1,5 +1,23 @@ <?php
-
+/**
+ * TForm 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
+ */
+
+/**
+ * TForm class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ * @since 3.0
+ */
class TForm extends TControl
{
public function onInit($param)
diff --git a/framework/Web/UI/THtmlWriter.php b/framework/Web/UI/THtmlWriter.php index abfc666c..dc867b77 100644 --- a/framework/Web/UI/THtmlWriter.php +++ b/framework/Web/UI/THtmlWriter.php @@ -1,9 +1,27 @@ <?php
+/**
+ * THtmlWriter 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
+ */
// todo: test if an attribute is a url
// keep nonclosing tag only
// add more utility methods (e.g. render....)
// implment encoding (for text and url)
+/**
+ * THtmlWriter class
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ * @since 3.0
+ */
class THtmlWriter extends TComponent implements ITextWriter
{
const TAG_INLINE=0;
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';
diff --git a/framework/Web/UI/WebControls/TSafeHtml.php b/framework/Web/UI/WebControls/TSafeHtml.php index 83e72167..f605608a 100644 --- a/framework/Web/UI/WebControls/TSafeHtml.php +++ b/framework/Web/UI/WebControls/TSafeHtml.php @@ -1,13 +1,22 @@ <?php
-
/**
- * ${classname}
+ * TSafeHtml class file
*
- * ${description}
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ */
+
+/**
+ * TSafeHtml class
*
- * @author Wei Zhuo<weizhuo[at]gmail[dot]com>
- * @version $Revision: 1.66 $ $Date: ${DATE} ${TIME} $
- * @package ${package}
+ * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI.WebControls
+ * @since 3.0
*/
class TSafeHtml extends TControl
{
|