From 0a8d5edbdc8e3e251f29b7370fdc2e594b06446f Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 10 Nov 2008 20:17:09 +0000 Subject: Early look at the User/Auth module refactoring. It will look for a driver based on the contents of the user/config/user.php file. And load that driver based on the User_Driver interface. There is a default User_Gallery_Driver class that will provide the actual interface implementation. Replacing this driver will allow a completely different user and authentication implementation to be used... hopefully will reduce issues with embedding and other user management systems. Removed from unit tests so they will still run. --- modules/gallery_unit_test/controllers/test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/gallery_unit_test') diff --git a/modules/gallery_unit_test/controllers/test.php b/modules/gallery_unit_test/controllers/test.php index 203edcba..c50ba5c4 100644 --- a/modules/gallery_unit_test/controllers/test.php +++ b/modules/gallery_unit_test/controllers/test.php @@ -62,13 +62,13 @@ class Test_Controller extends Controller { // this way. Uninstall modules first and core last. Ignore errors during uninstall. try { comment_installer::uninstall(); - user_installer::uninstall(); +// user_installer::uninstall(); core_installer::uninstall(); } catch (Exception $e) { } core_installer::install(); - user_installer::install(); +// user_installer::install(); comment_installer::install(); print new Unit_Test(); -- cgit v1.2.3