aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorAngelo Naselli <anaselli@linux.it>2014-01-06 00:59:45 +0100
committerAngelo Naselli <anaselli@linux.it>2014-01-06 00:59:45 +0100
commit11533544ca01c2c54899af0a00f2c062c1831433 (patch)
treecdd13f3a209618ddde3a6927a392590238a01a4c /modules
parenteb0eab8fc6d0c89262daa80d199bb7091540943b (diff)
downloadcolin-keep-11533544ca01c2c54899af0a00f2c062c1831433.tar
colin-keep-11533544ca01c2c54899af0a00f2c062c1831433.tar.gz
colin-keep-11533544ca01c2c54899af0a00f2c062c1831433.tar.bz2
colin-keep-11533544ca01c2c54899af0a00f2c062c1831433.tar.xz
colin-keep-11533544ca01c2c54899af0a00f2c062c1831433.zip
- Added a Base class for modules.
- Now configuration can be read also int /etc/categories.conf.d/ so that external modules can add their own configuration to be launched and added to admin panel - perl modules can be run by extending Module class, creating a start() method and configuring module entry in categories configuration as class element - Admin User now extends Module
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/usermanager/usermanager2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/usermanager/usermanager b/modules/usermanager/usermanager
index 80a5758..e4cbe5f 100755
--- a/modules/usermanager/usermanager
+++ b/modules/usermanager/usermanager
@@ -18,6 +18,6 @@ yui::YUI::app()->setApplicationTitle(N("Mageia Users Management Tool"));
yui::YUI::app()->setApplicationIcon($wm_icon);
my $userMan = AdminPanel::Users::GUsers->new();
-$userMan->manageUsersDialog();
+$userMan->start();
1;