PRADO uses configurations to glue together components into pages and applications. There are application configurations, page folder configurations, and templates. Application and page folder configurations are optional if default values are used. Templates are mainly used by pages and template controls. They are optional, too.
In this section, we focus on the application and page folder configurations. Templates are detailed in the next few sections.
Application configurations are used to specify the global behavior of an application. This consists of specifying the paths, modules, services and parameters that will be used in an application.
Application configurations are stored in an XML file which is passed as a parameter to the TApplication
instance. The format of application configurations is shown in the following,
<application PropertyName="PropertyValue" ...> <paths> <alias id="AliasID" path="AliasPath" /> <using namespace="Namespace" /> </paths> <modules> <module id="ModuleID" class="ModuleClass" PropertyName="PropertyValue" ... /> </modules> <services> <service id="ServiceID" class="ServiceClass" PropertyName="PropertyValue" ... /> </services> <parameters> <parameter id="ParameterID" class="ParameterClass" PropertyName="PropertyValue" ... /> </parameters> </application>
<application>
corresponds to the TApplication
instance. The PropertyName="PropertyValue"
pairs specify the initial values for the properties of TApplication
.<paths>
element contains the definition of path aliases and the PHP inclusion paths for the application. Each path alias is specified via an <alias>
whose path
attribute takes an absolute path or a path relative to the directory containing the application configuration file. The <using>
element specifies a particular path (in terms of namespace) to be appended to the PHP include paths when the application runs. PRADO defines two default aliases: System
and Application
. The former refers to the PRADO framework root directory, and the latter refers to the directory containing the application configuration file.<modules>
element contains the configurations for a list of modules. Each module is specified by a <module>
element. Each module is uniquely identified by the id
attribute and is of type class
. The PropertyName="PropertyValue"
pairs specify the initial values for the properties of the module.<services>
element is similar to the <modules>
element. It mainly specifies the services provided by the application.<parameters>
element contains a list of application-level parameters that are accessible from anywhere in the application. You may specify component-typed parameters like specifying modules, or you may specify string-typed parameters which take a simpler format as follows,
<parameter id="ParameterID">ParameterValue</parameter>
THttpRequest
, THttpResponse
, etc. It will also provide the TPageService
as a default service. Configuration and usage of these modules and services are covered in individual sections of this tutorial. Note, if your application takes default settings for these modules and service, you do not need to provide an application configuration. However, if these modules or services are not sufficient, or you want to change their behavior by configuring their property values, you will need an application configuration.
Page folder configurations are mainly used by TPageService
to modify or append the application configuration. As the name indicates, a page folder configuration is associated with a directory storing some page files. It is stored as an XML file named config.xml
.
When a user requests a page stored under <BasePath>/dir1/dir2
, the TPageService
will try to parse and load config.xml
files under <BasePath>/dir1
and <BasePath>/dir1/dir2
. Paths, modules, and parameters specified in these configuration files will be appended or merged into the existing application configuration.
The format of a page folder configuration file is as follows,
<configuration> <paths> <alias id="AliasID" path="AliasPath" /> <using namespace="Namespace" /> </paths> <modules> <module id="ModuleID" class="ModuleClass" PropertyName="PropertyValue" ... /> </modules> <authorization> <allow pages="PageID1,PageID2" users="User1,User2" roles="Role1,Role2" verb="post" /> <deny pages="PageID1,PageID2" users="User1,User2" roles="Role1,Role2" verb="post" /> </authorization> <pages PropertyName="PropertyValue" ...> <page id="PageID" PropertyName="PropertyValue" ... /> </pages> <parameters> <parameter id="ParameterID" class="ParameterClass" PropertyName="PropertyValue" ... /> </parameters> </configuration>The
<paths>
, <modules>
and <parameters>
are similar to those in an application configuration. The <authorization>
specifies the authorization rules that apply to the current page directory and all its subdirectories. It will be explained in more detail in future sections. The <pages>
element specifies the initial values for the properties of pages. Each <page>
element specifies the initial property values for a particular page identified by the id
<pages> element apply to all pages in the current directory and all its subdirectories.