Continued:
authorRoland Haeder <roland@mxchange.org>
Mon, 13 Feb 2017 19:15:03 +0000 (20:15 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 28 Feb 2017 21:09:54 +0000 (22:09 +0100)
- added more namespaces
- added more "import" lines for Registerable

Signed-off-by: Roland Häder <roland@mxchange.org>
19 files changed:
application/tests/class_ApplicationHelper.php
inc/config/class_FrameworkConfiguration.php
inc/main/classes/actions/html/class_HtmlLoginProfileAction.php
inc/main/classes/auth/class_CookieAuth.php
inc/main/classes/commands/html/class_HtmlLoginCommand.php
inc/main/classes/commands/html/class_HtmlRegisterCommand.php
inc/main/classes/database/frontend/class_UserDatabaseWrapper.php
inc/main/classes/database/frontend/class_UserPointsDatabaseWrapper.php
inc/main/classes/discovery/payment/class_LocalPaymentDiscovery.php
inc/main/classes/index/file_stack/class_FileStackIndex.php
inc/main/classes/language/class_LanguageSystem.php
inc/main/classes/output/debug/console/class_DebugConsoleOutput.php
inc/main/classes/output/web/class_WebOutput.php
inc/main/classes/reader/class_ConsoleNewsReader.php
inc/main/classes/reader/class_DefaultNewsReader.php
inc/main/classes/stacker/file/fifo/class_FiFoFileStack.php
inc/main/classes/user/guest/class_Guest.php
inc/main/classes/user/member/class_Member.php
inc/main/middleware/database/class_DatabaseConnection.php

index c334b9c09b3c9dc87c767891116e83ae8d204082..68b23c5e5bea60dcd1144635f552f263a7522aa5 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Helper\Application;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A class holding general data about the application and some methods for
  * the management including the entry point.
 /**
  * A class holding general data about the application and some methods for
  * the management including the entry point.
index 0cafb48bb875e8b10d4178c72bcccdbb5c8b6c64..efeac6349ed9fcd1417b679cb3d808bb98ac59b7 100644 (file)
@@ -4,6 +4,7 @@ namespace CoreFramework\Configuration;
 
 // Load framework stuff
 use CoreFramework\Generic\FrameworkInterface;
 
 // Load framework stuff
 use CoreFramework\Generic\FrameworkInterface;
+use CoreFramework\Registry\Registerable;
 
 /**
  * A class for the configuration stuff implemented in a singleton design paddern
 
 /**
  * A class for the configuration stuff implemented in a singleton design paddern
index 783458f30159c48eaf3b0bb9d881a097aa7ed6fc..f6538e0e27465d5a8ad25422649f71bbaae0907e 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Action\Login;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * An action for the profile page in login area
  *
 /**
  * An action for the profile page in login area
  *
index 61e89207e69930465717185449bd5c1bf8612fe6..b6890c16fc1f86382271e7f81452f93402725c7d 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Auth;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A cookie-bases authorization class
  *
 /**
  * A cookie-bases authorization class
  *
index 701515dae024139036c834f9162e9feb7b1d5711..1ad15d54739f14f3d9dd105498ba5e7ae243d85c 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Command\Login;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A command for the login form
  *
 /**
  * A command for the login form
  *
index 3aee36c3d66dec494d7fa69fb32c0d6ee2dc5b55..7d6f7982fb42307ba0a38dfdced6d1a13c37560b 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Command\Register;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A command class for the registration form
  *
 /**
  * A command class for the registration form
  *
index 87e2079dd263d7c302295b308c58cac051c9bf53..333ec1a7c051336d9719f4fe0749bcf2c0868d67 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Database\Wrapper\User;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A database wrapper for the User class
  *
 /**
  * A database wrapper for the User class
  *
index bc5712e8f5b52209fd3473d9009ea0f9329c2266..efa3b2b353dddd42ff761b3719559a75c63b8e86 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Database\Wrapper\Points;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A database wrapper for user points classes
  *
 /**
  * A database wrapper for user points classes
  *
index 6023982d1109a030a9651d7c7abf0db5a4c66992..0864675b51bdb0dfb4120c81f955666ef7adec96 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Discovery\Payment;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A local payment discovery class. This class looks in local database for
  * registered payment types and like all the others it at least returns the
 /**
  * A local payment discovery class. This class looks in local database for
  * registered payment types and like all the others it at least returns the
index db0d582eef67f52237aead05631e04b4b7329a12..bc1e5bc4f6d0b67dc46f20190708717b0da3935b 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Index\Stack;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A FileStack index class
  *
 /**
  * A FileStack index class
  *
index 3f0c46b0d5ffde9959dd6595abc361406387b219..c2cbe482c18b7f08f39e1133201ca1fa39721be5 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Localization;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * The language sub-system for handling language strings being used in the
  * application and whole framework
 /**
  * The language sub-system for handling language strings being used in the
  * application and whole framework
index 4f89688cb333e9f951c5fb8f48f91570406b3451..8ab0887b03b17de6e60370bbf79d5867e526c59e 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Debug\Output;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A debug output class for the console (e.g. hub software)
  *
 /**
  * A debug output class for the console (e.g. hub software)
  *
index 17031f2d8922a27f67cec3b1484e95b69f237966..2beb7dc0cf857709646c8daae965dc995934600a 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Output;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * This class simply puts HTML code / JavaScript code or CSS code out to the
  * browser
 /**
  * This class simply puts HTML code / JavaScript code or CSS code out to the
  * browser
index 533235580ae8ed668f51618474c2763289636e99..e78a7eb46eb5a242b09e0e033593241483dcab6f 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Reader\News;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A console news reader class reads news from database layer
  *
 /**
  * A console news reader class reads news from database layer
  *
index 00da54619b45cacd0a3e26089bd211d1675947c4..460f13a4f85f5b8270fdfe71686ed2b421c18a23 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Reader\News;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A default news reader class reads news from database layer
  *
 /**
  * A default news reader class reads news from database layer
  *
index 2b74bd4c70f8977d89d14f4c2d6b58f5786131f7..f9a03e5dc3391a1f7d77264f3e34446cf1cca5e7 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Stack\Filesystem;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A FiFo file-based stack
  *
 /**
  * A FiFo file-based stack
  *
index 02d32a06024d1d9ad21b9c4bb9db1db29ad99e5d..fd68a9ba5be9ccc57d18159da535b253877f9e46 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\User\Guest;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A generic class for handling guests
  *
 /**
  * A generic class for handling guests
  *
index 213fe605cf8f147a1567edbe3213a33846f9ee13..c9c87956d897cb2863235d27c8b0d524bf31116a 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\User\Login;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * A generic class for handling users
  *
 /**
  * A generic class for handling users
  *
index 82cc428b2bdf48e9db3c1824d88926128640cd50..d0732ea43a85c44c22fa775ff8b12fb1ea1025fd 100644 (file)
@@ -1,4 +1,10 @@
 <?php
 <?php
+// Own namespace
+namespace CoreFramework\Connection\Database;
+
+// Import framework stuff
+use CoreFramework\Registry\Registerable;
+
 /**
  * Database selector class
  *
 /**
  * Database selector class
  *