From efa8b9e7ce1c700d31fee7d16351159ac5f2e71f Mon Sep 17 00:00:00 2001 From: carl <> Date: Wed, 18 Jan 2006 15:01:50 +0000 Subject: Fixed a name bug Template pages --- .../protected/pages/Configurations/Templates2.page | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'demos/quickstart/protected/pages/Configurations/Templates2.page') diff --git a/demos/quickstart/protected/pages/Configurations/Templates2.page b/demos/quickstart/protected/pages/Configurations/Templates2.page index cace46b3..ca8d7de4 100644 --- a/demos/quickstart/protected/pages/Configurations/Templates2.page +++ b/demos/quickstart/protected/pages/Configurations/Templates2.page @@ -1,13 +1,13 @@

Templates: Part II

- +

Dynamic Content Tags

Dynamic content tags are introduced as shortcuts to some commonly used component tags. These tags are mainly used to render contents resulted from evaluating some PHP expressions or statements. They include expression tags, statement tags, databind tags, parameter tags, asset tags and localization tags.

- +

Expression Tags

An expression tag represents a PHP expression that is evaluated when the template control is being rendered. The expression evaluation result is inserted at the place where the tag resides in the template. Its format is as follows, @@ -20,7 +20,7 @@ Inernally, an expression tag is represented by a TExpression control. T

- +

Statement Tags

Statement tags are similar to expression tags, except that statement tags contain PHP statements rather than expressions. The output of the PHP statements (using for example echo or print in PHP) are displayed at the place where the statement tag resides in the template. Inernally, a statement tag is represented by a TStatements control. Therefore, in the statements $this refers to the TStatements control. The format of statement tags is as follows, @@ -40,7 +40,7 @@ echo strftime("%A %e %B %Y",time());

- +

Databind Tags

Databind tags are similar to expression tags, except that the expressions are evaluated only when a dataBind() call is invoked on the controls representing the databind tags. Internally, a TLiteral control is used to represent a databind tag and $this in the expression would refer to the control. The format of databind tags is as follows, @@ -49,7 +49,7 @@ Databind tags are similar to expression tags, except that the expressions are ev

- +

Parameter Tags

Parameter tags are used to insert application parameters at the place where they appear in the template. The format of parameter tags is as follows, @@ -59,7 +59,7 @@ Parameter tags are used to insert application parameters at the place where they Note, application parameters are usually defined in application configurations or page directory configurations. The parameters are evaluated when the template is instantiated.

- +

Asset Tags

Asset tags are used to publish private files and display the corresponding the URLs. For example, if you have an image file that is not Web-accessible and you want to make it visible to end-users, you can use asset tags to publish this file and show the URL to end-users so that they can fetch the published image. -- cgit v1.2.3