summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-05-30 21:10:33 +0200
committerThomas Lange <code@nerdmind.de>2017-05-30 21:10:33 +0200
commitdce0e59f93a9c7c996b71265c093c177979c8220 (patch)
tree20d228523e7afefa2db21379e8190e6eca5a5268
parent376b1d1ba9ca7b775e549882e1778defdb303d63 (diff)
downloadwiki-dce0e59f93a9c7c996b71265c093c177979c8220.tar.gz
wiki-dce0e59f93a9c7c996b71265c093c177979c8220.tar.xz
wiki-dce0e59f93a9c7c996b71265c093c177979c8220.zip
Parameter documentation updated for version 2.2 of the application.
-rw-r--r--Templates.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Templates.md b/Templates.md
index 4d9560e..e58add6 100644
--- a/Templates.md
+++ b/Templates.md
@@ -186,13 +186,13 @@ Default template for error page 404 Not Found.
## References to reduce duplicate text
### `@PAGE`
-* `$PAGE['ID']`: Contains the unique ID of the page
* `$PAGE['URL']`: Contains the complete URL to the page content
* `$PAGE['GUID']`: Contains a pseudo-guid of the page
* `$PAGE['ARGV']`: Contains the arguments parsed as key->value array
* `$PAGE['FILE']['LIST']`: List of extracted image URLs from the body
* `$PAGE['BODY']['TEXT'] ()`: Pre-parsed content of the page body
* `$PAGE['BODY']['HTML'] ()`: HTML parsed content of the page body
+* `$PAGE['ATTR']['ID']`: Raw attribute data from database column `id`
* `$PAGE['ATTR']['USER']`: Raw attribute data from database column `user`
* `$PAGE['ATTR']['SLUG']`**{!}**: Raw attribute data from database column `slug`
* `$PAGE['ATTR']['NAME']`**{!}**: Raw attribute data from database column `name`
@@ -202,13 +202,13 @@ Default template for error page 404 Not Found.
* `$PAGE['ATTR']['TIME_UPDATE']`: Raw attribute data from database column `time_update`
### `@POST`
-* `$POST['ID']`: Contains the unique ID of the post
* `$POST['URL']`: Contains the complete URL to the post content
* `$POST['GUID']`: Contains a pseudo-guid of the post
* `$POST['ARGV']`: Contains the arguments parsed as key->value array
* `$POST['FILE']['LIST']`: List of extracted image URLs from the body"
* `$POST['BODY']['TEXT'] ()`: Pre-parsed content of the post body
* `$POST['BODY']['HTML'] ()`: HTML parsed content of the post body
+* `$POST['ATTR']['ID']`: Raw attribute data from database column `id`
* `$POST['ATTR']['USER']`: Raw attribute data from database column `user`
* `$POST['ATTR']['SLUG']`**{!}**: Raw attribute data from database column `slug`
* `$POST['ATTR']['NAME']`**{!}**: Raw attribute data from database column `name`
@@ -218,13 +218,13 @@ Default template for error page 404 Not Found.
* `$POST['ATTR']['TIME_UPDATE']`: Raw attribute data from database column `time_update`
### `@USER`
-* `$USER['ID']`: Contains the unique ID of the user
* `$USER['URL']`: Contains the complete URL to the user
* `$USER['GUID']`: Contains a pseudo-guid of the user content
* `$USER['ARGV']`: Contains the arguments parsed as key->value array
* `$USER['FILE']['LIST']`: List of extracted image URLs from the body
* `$USER['BODY']['TEXT'] ()`: Pre-parsed content of the user body
* `$USER['BODY']['HTML'] ()`: HTML parsed content of the user body
+* `$USER['ATTR']['ID']`: Raw attribute data from database column `id`
* `$USER['ATTR']['SLUG']`**{!}**: Raw attribute data from database column `slug`
* `$USER['ATTR']['BODY']`**{!}**: Raw attribute data from database column `body`
* `$USER['ATTR']['ARGV']`: Raw attribute data from database column `argv`