diff options
Diffstat (limited to 'demos/personal/protected')
-rw-r--r-- | demos/personal/protected/Pages/Layout.tpl | 2 | ||||
-rw-r--r-- | demos/personal/protected/Pages/config.php | 18 | ||||
-rw-r--r-- | demos/personal/protected/application.php | 44 | ||||
-rw-r--r-- | demos/personal/protected/application.xml | 7 |
4 files changed, 68 insertions, 3 deletions
diff --git a/demos/personal/protected/Pages/Layout.tpl b/demos/personal/protected/Pages/Layout.tpl index 3ffb5306..d650a689 100644 --- a/demos/personal/protected/Pages/Layout.tpl +++ b/demos/personal/protected/Pages/Layout.tpl @@ -8,7 +8,7 @@ <div class="header">
<h1>Your Name Here</h1>
-<h2>My Personal Site</h2>
+<h2><%$siteName%></h2>
<div class="mainmenu">
<com:MainMenu />
diff --git a/demos/personal/protected/Pages/config.php b/demos/personal/protected/Pages/config.php new file mode 100644 index 00000000..7a6c9a6c --- /dev/null +++ b/demos/personal/protected/Pages/config.php @@ -0,0 +1,18 @@ +<?php +return array( + 'authorization' => array( + array( + 'action' => 'deny', + 'properties' => array( + 'pages' => 'Settings', + 'users' => '?', + ), + ), + ), + 'pages' => array( + 'properties' => array( + 'MasterClass' => 'Application.Pages.Layout', + 'Theme' => 'White', + ), + ), +);
\ No newline at end of file diff --git a/demos/personal/protected/application.php b/demos/personal/protected/application.php new file mode 100644 index 00000000..11ad1ef8 --- /dev/null +++ b/demos/personal/protected/application.php @@ -0,0 +1,44 @@ +<?php +return array( + 'application' => array( + 'id' => 'personal', + 'mode' => 'Debug', + ), + 'paths' => array( + 'using'=>array('Application.common.*'), + 'aliases'=>array( + 'myapp' => '/Users/carlgmathisen/Sites/prado3/branch3.2/demos/personal/protected', + ) + ), + 'modules' => array( + ), + 'services' => array( + 'page' => array( + 'class' => 'TPageService', + 'properties' => array( + 'basePath' => 'Application.Pages', + ), + 'modules' => array( + 'users' => array( + 'class' => 'System.Security.TUserManager', + 'properties' => array( + 'passwordMode' => 'Clear', + ), + 'users' => array( + array('name'=>'demo','password'=>'demo'), + ), + ), // users + 'auth' => array( + 'class' => 'System.Security.TAuthManager', + 'properties' => array( + 'userManager' => 'users', + 'loginPage' => 'UserLogin', + ), + ), + ), + ), + ), + 'parameters' => array( + 'siteName' => 'My Personal Site (PHP Config)', + ) +);
\ No newline at end of file diff --git a/demos/personal/protected/application.xml b/demos/personal/protected/application.xml index d2affe24..e9115f29 100644 --- a/demos/personal/protected/application.xml +++ b/demos/personal/protected/application.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?>
-<application id="personal" mode="Normal">
+<application id="personal" mode="Debug">
<paths>
<using namespace="Application.Common.*" />
</paths>
@@ -33,4 +33,7 @@ </modules>
</service>
</services>
-</application>
\ No newline at end of file + <parameters>
+ <parameter id="siteName" value="My Personal Site" />
+ </parameters>
+</application>
|