diff options
author | xue <> | 2005-12-27 16:16:38 +0000 |
---|---|---|
committer | xue <> | 2005-12-27 16:16:38 +0000 |
commit | 2afb475e88a4f41984b5e606b927b22f97e9cc4c (patch) | |
tree | c7245d913a5abb784adab89ba157070af46b0511 /framework/Web/Services | |
parent | a79a69ca2e9f1818c0c4c276fd4857e4f849ab80 (diff) |
Diffstat (limited to 'framework/Web/Services')
-rw-r--r-- | framework/Web/Services/TPageService.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/framework/Web/Services/TPageService.php b/framework/Web/Services/TPageService.php index d94b7ae2..7ef3c4f0 100644 --- a/framework/Web/Services/TPageService.php +++ b/framework/Web/Services/TPageService.php @@ -26,13 +26,16 @@ Prado::using('System.Web.UI.TPageStatePersister'); *
* Pages that are available to client users are stored under a directory specified by
* {@link setBasePath BasePath}. The directory may contain subdirectories.
- * A directory may be used to group together the pages serving for the similar goal.
+ * Pages serving for a similar goal are usually placed under the same directory.
* A directory may contain a configuration file <b>config.xml</b> whose content
* is similar to that of application configuration file.
*
* A page is requested via page path, which is a dot-connected directory names
* appended by the page name. Assume '<BasePath>/Users/Admin' is the directory
* containing the page 'Update'. Then the page can be requested via 'Users.Admin.Update'.
+ * By default, the {@link setBasePath BasePath} of the page service is the "pages"
+ * directory under the application base path. You may change this default
+ * by setting {@link setBasePath BasePath} with a different path you prefer.
*
* Page name refers to the file name (without extension) of the page template.
* In order to differentiate from the common control template files, the extension
|