diff options
author | xue <> | 2005-11-18 00:46:02 +0000 |
---|---|---|
committer | xue <> | 2005-11-18 00:46:02 +0000 |
commit | c9cbb1a2891543bff1c459af18c2c62f47a17d28 (patch) | |
tree | 0f8a038bb870b73060f743ceaf9d0a24c9bb1326 /framework/TApplication.php | |
parent | ec41f13012ca7c8ca67e1c1992368a5dee2a9624 (diff) |
Diffstat (limited to 'framework/TApplication.php')
-rw-r--r-- | framework/TApplication.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php index 9ac9a8a0..7c9de44a 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -58,10 +58,16 @@ require_once(PRADO_DIR.'/Web/Services/TPageService.php'); * the application, the modules, the services, the parameters, and so on.
*
* Examples:
+ * - Create and run a Prado application:
* <code>
* $application=new TApplication($configFile);
* $application->run();
* </code>
+ * - The parsed application configuration file is cached.
+ * <code>
+ * $application=new TApplication($configFile,$cacheFile);
+ * $application->run();
+ * </code>
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
|