From 4ef89c509993560a05ccdb56d02e2884510ec2de Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 22 Feb 2017 23:19:29 +0100 Subject: [PATCH] Continued: - added "import" for ObjectFactory MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- application/tests/class_ApplicationHelper.php | 1 + inc/database/lib-local.php | 3 +++ inc/main/classes/actions/html/class_HtmlLoginProfileAction.php | 1 + inc/main/classes/class_BaseFrameworkSystem.php | 1 + inc/main/classes/commands/class_BaseCommand.php | 1 + inc/main/classes/commands/html/class_HtmlConfirmCommand.php | 1 + inc/main/classes/commands/html/class_HtmlHomeCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlLoginAreaCommand.php | 1 + inc/main/classes/commands/html/class_HtmlLoginCommand.php | 1 + .../classes/commands/html/class_HtmlLoginFailedCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlLogoutCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlLogoutDoneCommand.php | 3 +++ inc/main/classes/commands/html/class_HtmlRegisterCommand.php | 1 + inc/main/classes/commands/html/class_HtmlResendLinkCommand.php | 1 + inc/main/classes/commands/html/class_HtmlStatusCommand.php | 3 +++ inc/main/classes/console/class_ConsoleTools.php | 1 + inc/main/classes/controller/class_BaseController.php | 1 + .../controller/console/class_ConsoleDefaultNewsController.php | 3 +++ .../classes/controller/html/class_HtmlConfirmController.php | 3 +++ .../controller/html/class_HtmlDefaultNewsController.php | 3 +++ .../classes/controller/html/class_HtmlLogoutController.php | 3 +++ .../controller/html/login/class_HtmlLoginAreaController.php | 3 +++ .../image/captcha/class_ImageCodeCaptchaController.php | 3 +++ inc/main/classes/crypto/class_CryptoHelper.php | 1 + .../classes/database/backend/class_CachedLocalFileDatabase.php | 3 +++ inc/main/classes/database/class_BaseDatabaseWrapper.php | 1 + .../classes/database/frontend/class_UserDatabaseWrapper.php | 1 + .../database/frontend/class_UserPointsDatabaseWrapper.php | 1 + inc/main/classes/decorator/xml/class_XmlCompactorDecorator.php | 3 +++ .../classes/discovery/payment/class_LocalPaymentDiscovery.php | 1 + inc/main/classes/factories/cache/class_CacheFactory.php | 3 +++ inc/main/classes/factories/client/class_ClientFactory.php | 1 + .../factories/database/class_DatabaseWrapperFactory.php | 1 + inc/main/classes/factories/html/class_HtmlNewsFactory.php | 3 +++ .../classes/factories/index/class_FileStackIndexFactory.php | 1 + inc/main/classes/factories/login/class_LoginFactory.php | 1 + .../classes/factories/registry/class_SocketRegistryFactory.php | 1 + inc/main/classes/factories/stacks/class_FileStackFactory.php | 2 +- inc/main/classes/factories/user/class_UserFactory.php | 1 + .../classes/factories/xml/class_XmlTemplateEngineFactory.php | 1 + inc/main/classes/feature/class_FrameworkFeature.php | 1 + .../classes/file_directories/binary/class_BaseBinaryFile.php | 3 +++ .../classes/file_directories/io_stream/class_FileIoStream.php | 1 + .../file_directories/text/input/class_BaseInputTextFile.php | 3 +++ .../file_directories/text/output/class_BaseOutputTextFile.php | 3 +++ inc/main/classes/filter/auth/class_UserAuthFilter.php | 1 + inc/main/classes/filter/crypto/class_CaptchaEncryptFilter.php | 3 +++ .../classes/filter/payment/class_PaymentDiscoveryFilter.php | 1 + .../filter/verifier/class_AccountPasswordVerifierFilter.php | 1 + .../verifier/class_GraphicalCodeCaptchaVerifierFilter.php | 3 +++ inc/main/classes/handler/raw_data/class_BaseDataHandler.php | 3 +++ .../handler/raw_data/network/class_BaseRawDataHandler.php | 3 +++ inc/main/classes/handler/tasks/class_TaskHandler.php | 3 +++ inc/main/classes/helper/captcha/class_BaseCaptcha.php | 1 + .../classes/helper/captcha/web/class_GraphicalCodeCaptcha.php | 1 + inc/main/classes/helper/class_BaseHelper.php | 1 + inc/main/classes/helper/html/forms/class_HtmlFormHelper.php | 1 + inc/main/classes/index/class_BaseIndex.php | 1 + inc/main/classes/listener/class_BaseListener.php | 1 + inc/main/classes/listener/socket/class_SocketFileListener.php | 3 +++ inc/main/classes/lists/class_BaseList.php | 1 + inc/main/classes/menu/class_BaseMenu.php | 1 + inc/main/classes/points/class_UserPoints.php | 1 + inc/main/classes/reader/class_ConsoleNewsReader.php | 1 + inc/main/classes/reader/class_DefaultNewsReader.php | 1 + inc/main/classes/registration/class_BaseRegistration.php | 1 + inc/main/classes/resolver/action/class_BaseActionResolver.php | 3 +++ .../classes/resolver/command/class_BaseCommandResolver.php | 3 +++ .../resolver/controller/class_BaseControllerResolver.php | 3 +++ inc/main/classes/stacker/file/class_BaseFileStack.php | 3 +++ inc/main/classes/template/class_BaseTemplateEngine.php | 1 + inc/main/classes/template/image/class_ImageTemplateEngine.php | 1 + inc/main/classes/template/menu/class_MenuTemplateEngine.php | 1 + inc/main/classes/user/class_BaseUser.php | 1 + inc/main/classes/user/member/class_Member.php | 1 + inc/main/middleware/compressor/class_CompressorChannel.php | 3 +++ inc/main/middleware/debug/class_DebugMiddleware.php | 3 +++ inc/main/middleware/io/class_FileIoHandler.php | 1 + 78 files changed, 140 insertions(+), 1 deletion(-) diff --git a/application/tests/class_ApplicationHelper.php b/application/tests/class_ApplicationHelper.php index 3d5e2c92..fdf74a81 100644 --- a/application/tests/class_ApplicationHelper.php +++ b/application/tests/class_ApplicationHelper.php @@ -5,6 +5,7 @@ namespace CoreFramework\Helper\Application; // Import framework stuff use CoreFramework\Manager\ManageableApplication; use CoreFramework\Object\BaseFrameworkSystem; +use CoreFramework\Factory\ObjectFactory; use CoreFramework\Registry\Registerable; use CoreFramework\Registry\Generic\Registry; use CoreFramework\Template\CompileableTemplate; diff --git a/inc/database/lib-local.php b/inc/database/lib-local.php index b5223158..b365a9f3 100644 --- a/inc/database/lib-local.php +++ b/inc/database/lib-local.php @@ -1,4 +1,7 @@