1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: UserAdvManager |
---|
4 | Version: auto |
---|
5 | Description: Renforcer la gestion des utilisateurs - Enforce users management |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=216 |
---|
7 | Author: Nicco, Eric |
---|
8 | Author URI: http://gallery-nicco.no-ip.org, http://www.infernoweb.net |
---|
9 | */ |
---|
10 | |
---|
11 | /* History: UAM_PATH.'Changelog.txt.php' */ |
---|
12 | |
---|
13 | /* |
---|
14 | ***** TODO List ***** |
---|
15 | See project bugtracker: http://piwigo.org/bugs/my_view_page.php |
---|
16 | */ |
---|
17 | |
---|
18 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
19 | if (!defined('UAM_PATH')) define('UAM_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
---|
20 | |
---|
21 | global $conf; |
---|
22 | |
---|
23 | include_once (UAM_PATH.'include/constants.php'); |
---|
24 | include_once (UAM_PATH.'include/functions.inc.php'); |
---|
25 | |
---|
26 | load_language('plugin.lang', UAM_PATH); |
---|
27 | load_language('help.lang', UAM_PATH); |
---|
28 | $conf_UAM = unserialize($conf['UserAdvManager']); |
---|
29 | |
---|
30 | |
---|
31 | // Plugin administration panel |
---|
32 | // --------------------------- |
---|
33 | add_event_handler('get_admin_plugin_menu_links', 'UAM_admin_menu'); |
---|
34 | |
---|
35 | // Features and controls on user connexion |
---|
36 | // --------------------------------------- |
---|
37 | add_event_handler('loc_begin_index', 'UAM_Init'); |
---|
38 | |
---|
39 | // User creation |
---|
40 | // ------------- |
---|
41 | add_event_handler('register_user', 'UAM_Adduser'); |
---|
42 | |
---|
43 | // User deletion |
---|
44 | // ------------- |
---|
45 | add_event_handler('delete_user', 'UAM_Deluser'); |
---|
46 | |
---|
47 | // Check users registration |
---|
48 | // ------------------------ |
---|
49 | add_event_handler('register_user_check', 'UAM_RegistrationCheck', EVENT_HANDLER_PRIORITY_NEUTRAL, 2); |
---|
50 | |
---|
51 | if (script_basename() == 'profile') |
---|
52 | { |
---|
53 | add_event_handler('loc_begin_profile', 'UAM_Profile_Init'); |
---|
54 | } |
---|
55 | |
---|
56 | // Redirection to profile page |
---|
57 | // --------------------------- |
---|
58 | add_event_handler('login_success', 'UAM_LoginTasks',EVENT_HANDLER_PRIORITY_NEUTRAL, 1); |
---|
59 | |
---|
60 | // Adding customized text to lost password email |
---|
61 | // --------------------------------------------- |
---|
62 | add_event_handler('render_lost_password_mail_content', 'UAM_lost_password_mail_content'); |
---|
63 | |
---|
64 | // *** Important ! This is necessary to make email exclusion work in admin's users management panel *** |
---|
65 | // ---------------------------------------------------------------------------------------------------- |
---|
66 | add_event_handler('init', 'UAM_InitPage'); |
---|
67 | |
---|
68 | |
---|
69 | // PWG_Stuffs module |
---|
70 | // ----------------- |
---|
71 | if (isset($conf_UAM['STUFFS']) and $conf_UAM['STUFFS'] == 'true') |
---|
72 | { |
---|
73 | add_event_handler('get_stuffs_modules', 'register_UAM_stuffs_module'); |
---|
74 | } |
---|
75 | |
---|
76 | |
---|
77 | // Check options compatibility between UAM and Piwigo at admin page load |
---|
78 | // --------------------------------------------------------------------- |
---|
79 | add_event_handler('loc_begin_admin_page', 'UAM_check_compat'); |
---|
80 | ?> |
---|