summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitattributes1
-rw-r--r--demos/sqlmap/protected/application.php22
2 files changed, 23 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index d4935b74..6a7016a2 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1854,6 +1854,7 @@ demos/sqlmap/protected/.htaccess -text
demos/sqlmap/protected/APP_CODE/Person.php -text
demos/sqlmap/protected/App_Data/person.xml -text
demos/sqlmap/protected/App_Data/test.db -text
+demos/sqlmap/protected/application.php -text
demos/sqlmap/protected/application.xml -text
demos/sqlmap/protected/pages/Manual/BigPicture.page -text
demos/sqlmap/protected/pages/Manual/BuildingTSqlMapper.page -text
diff --git a/demos/sqlmap/protected/application.php b/demos/sqlmap/protected/application.php
new file mode 100644
index 00000000..60d9549c
--- /dev/null
+++ b/demos/sqlmap/protected/application.php
@@ -0,0 +1,22 @@
+<?php
+return array(
+ 'application' => array(
+ 'id' => 'Database',
+ 'Mode' => 'Debug',
+ ),
+ 'paths' => array(
+ 'Example' => 'APP_CODE',
+ 'Quickstart' => '../../quickstart',
+ ),
+ 'using' => array(
+ 'Quickstart.protected.controls.*',
+ ),
+ 'services' => array(
+ 'page' => array(
+ 'class' => 'TPageService',
+ 'properties' => array(
+ 'DefaultPage' => 'Manual.Overview',
+ ),
+ ),
+ ),
+); \ No newline at end of file