summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/php/application.xml2
-rw-r--r--app/php/controls/CalendarScaffold.php2
-rw-r--r--app/php/controls/HeaderMenu.php2
-rw-r--r--app/php/controls/LoginBox.php2
-rw-r--r--app/php/controls/PasswordChange.php2
-rw-r--r--app/php/controls/RegistrationForm.php2
-rw-r--r--app/php/controls/TimezoneSelect.php2
-rw-r--r--app/php/controls/UpcomingEvents.php2
-rw-r--r--app/php/controls/UserSelection.php2
-rw-r--r--app/php/pages/config.xml2
-rw-r--r--app/php/web/AssetManager.php (renamed from app/php/components/AssetManager.php)0
-rw-r--r--app/php/web/ClientScriptManager.php (renamed from app/php/components/ClientScriptManager.php)0
-rw-r--r--app/php/web/TemplateControl.php (renamed from app/php/components/TemplateControl.php)0
-rw-r--r--app/php/web/config.xml (renamed from app/php/components/config.xml)2
14 files changed, 11 insertions, 11 deletions
diff --git a/app/php/application.xml b/app/php/application.xml
index 591ee66..b89de7e 100644
--- a/app/php/application.xml
+++ b/app/php/application.xml
@@ -11,8 +11,8 @@
<include file="Application.url.config" />
+ <include file="Application.web.config" />
<include file="Application.pages.config" />
- <include file="Application.components.config" />
<include file="Application.controls.config" />
<modules>
diff --git a/app/php/controls/CalendarScaffold.php b/app/php/controls/CalendarScaffold.php
index d3f0970..87ffdb0 100644
--- a/app/php/controls/CalendarScaffold.php
+++ b/app/php/controls/CalendarScaffold.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('System.Web.UI.ActiveControls.TActiveDataGrid');
Prado::using('System.Web.UI.ActiveControls.TActiveTextBox');
diff --git a/app/php/controls/HeaderMenu.php b/app/php/controls/HeaderMenu.php
index f6b69b9..a9759da 100644
--- a/app/php/controls/HeaderMenu.php
+++ b/app/php/controls/HeaderMenu.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('System.Web.UI.ActiveControls.TActiveLinkButton');
diff --git a/app/php/controls/LoginBox.php b/app/php/controls/LoginBox.php
index eb448eb..a22750c 100644
--- a/app/php/controls/LoginBox.php
+++ b/app/php/controls/LoginBox.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
class LoginBox extends TemplateControl {
diff --git a/app/php/controls/PasswordChange.php b/app/php/controls/PasswordChange.php
index 1c05c64..5653ef3 100644
--- a/app/php/controls/PasswordChange.php
+++ b/app/php/controls/PasswordChange.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('Application.user.DbUser');
diff --git a/app/php/controls/RegistrationForm.php b/app/php/controls/RegistrationForm.php
index 2ffe507..0f24cea 100644
--- a/app/php/controls/RegistrationForm.php
+++ b/app/php/controls/RegistrationForm.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('Application.model.User');
diff --git a/app/php/controls/TimezoneSelect.php b/app/php/controls/TimezoneSelect.php
index 5556f4a..d0357e4 100644
--- a/app/php/controls/TimezoneSelect.php
+++ b/app/php/controls/TimezoneSelect.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('Application.user.DbUser');
Prado::using('Application.dto.TimezoneDTO');
diff --git a/app/php/controls/UpcomingEvents.php b/app/php/controls/UpcomingEvents.php
index 6d0f9d3..80f29a5 100644
--- a/app/php/controls/UpcomingEvents.php
+++ b/app/php/controls/UpcomingEvents.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('Application.facades.EventFacade');
diff --git a/app/php/controls/UserSelection.php b/app/php/controls/UserSelection.php
index 6f9bc9e..83c7bae 100644
--- a/app/php/controls/UserSelection.php
+++ b/app/php/controls/UserSelection.php
@@ -1,6 +1,6 @@
<?php
-Prado::using('Application.components.TemplateControl');
+Prado::using('Application.web.TemplateControl');
Prado::using('Application.facades.CalendarFacade');
diff --git a/app/php/pages/config.xml b/app/php/pages/config.xml
index b870cb3..d6403ff 100644
--- a/app/php/pages/config.xml
+++ b/app/php/pages/config.xml
@@ -3,7 +3,7 @@
<services>
<service id="page"
class="TPageService"
- ClientScriptManagerClass="Application.components.ClientScriptManager" />
+ ClientScriptManagerClass="Application.web.ClientScriptManager" />
</services>
<pages MasterClass="Application.layouts.MainLayout"
diff --git a/app/php/components/AssetManager.php b/app/php/web/AssetManager.php
index 1094917..1094917 100644
--- a/app/php/components/AssetManager.php
+++ b/app/php/web/AssetManager.php
diff --git a/app/php/components/ClientScriptManager.php b/app/php/web/ClientScriptManager.php
index 84b9d6f..84b9d6f 100644
--- a/app/php/components/ClientScriptManager.php
+++ b/app/php/web/ClientScriptManager.php
diff --git a/app/php/components/TemplateControl.php b/app/php/web/TemplateControl.php
index e3c9e26..e3c9e26 100644
--- a/app/php/components/TemplateControl.php
+++ b/app/php/web/TemplateControl.php
diff --git a/app/php/components/config.xml b/app/php/web/config.xml
index 0c28e23..49bbcc6 100644
--- a/app/php/components/config.xml
+++ b/app/php/web/config.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<modules>
- <module id="asset" class="Application.components.AssetManager"
+ <module id="asset" class="Application.web.AssetManager"
BasePath="Web._assets" />
</modules>
</configuration>