diff options
author | Angelo Naselli <anaselli@linux.it> | 2014-01-06 00:59:45 +0100 |
---|---|---|
committer | Angelo Naselli <anaselli@linux.it> | 2014-01-06 00:59:45 +0100 |
commit | 11533544ca01c2c54899af0a00f2c062c1831433 (patch) | |
tree | cdd13f3a209618ddde3a6927a392590238a01a4c /modules | |
parent | eb0eab8fc6d0c89262daa80d199bb7091540943b (diff) | |
download | colin-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-x | modules/usermanager/usermanager | 2 |
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; |