source: extensions/UserAdvManager/branches/2.30/main.inc.php @ 12272

Last change on this file since 12272 was 12272, checked in by Eric, 13 years ago

Merge r12271 from trunk to branch 2.30

  • Property svn:eol-style set to LF
File size: 6.5 KB
Line 
1<?php
2/*
3Plugin Name: UserAdvManager
4Version: 2.30.0
5Description: Renforcer la gestion des utilisateurs - Enforce users management
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=216
7Author: Nicco, Eric
8Author 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 *****
15See project bugtracker: http://piwigo.org/bugs/my_view_page.php
16*/
17
18if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
19if (!defined('UAM_PATH')) define('UAM_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
20
21global $conf;
22
23include_once (UAM_PATH.'include/constants.php');
24include_once (UAM_PATH.'include/functions.inc.php');
25
26load_language('plugin.lang', UAM_PATH);
27$conf_UAM = unserialize($conf['UserAdvManager']);
28
29
30// Plugin administration panel
31// ---------------------------
32add_event_handler('get_admin_plugin_menu_links', 'UAM_admin_menu');
33
34// Lastvisit table feed for Ghost Tracker
35// --------------------------------------
36add_event_handler('loc_begin_index', 'UAM_GhostTracker');
37
38// User creation
39// -------------
40add_event_handler('register_user', 'UAM_Adduser');
41
42// User deletion
43// -------------
44add_event_handler('delete_user', 'UAM_Deluser');
45
46// Check users registration
47// ------------------------
48add_event_handler('register_user_check', 'UAM_RegistrationCheck', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
49
50if (script_basename() == 'profile')
51{
52  add_event_handler('loc_begin_profile', 'UAM_Profile_Init');
53}
54
55// Redirection to profile page
56// ---------------------------
57add_event_handler('login_success', 'UAM_LoginTasks');
58
59// Adding customized text to lost password email
60// ---------------------------------------------
61add_event_handler('render_lost_password_mail_content', 'UAM_lost_password_mail_content');
62
63// *** Important ! This is necessary to make email exclusion work in admin's users management panel ***
64// ----------------------------------------------------------------------------------------------------
65add_event_handler('init', 'UAM_InitPage');
66
67// PWG_Stuffs module
68// -----------------
69if ((isset($conf_UAM[33]) and $conf_UAM[33] == 'true'))
70{
71  add_event_handler('get_stuffs_modules', 'register_UAM_stuffs_module');
72}
73
74// Add new feature in user_list - Password Reset
75// ---------------------------------------------
76if ((isset($conf_UAM[38]) and $conf_UAM[38] == 'true'))
77{
78  // Add new column on user_list
79  // ---------------------------
80  add_event_handler('loc_visible_user_list', 'UAM_loc_visible_user_list');
81
82  // Add prefilter on user_list
83  // --------------------------
84  add_event_handler('loc_begin_admin', 'UAM_PwdReset_Action',60);
85
86  /**
87   * UAM_PwdReset_Action - Triggered on UAM_PwdReset_Action
88   * Handle passord reset action in user_list.php
89   */
90  function UAM_PwdReset_Action()
91  {
92    global $conf, $user, $template, $lang, $errors;
93
94    $page['errors'] = array();
95    $page['infos'] = array();
96    $page['filtered_users'] = array();
97
98    if (isset($_POST['pwdreset']))
99    {
100      $collection = array();
101
102      switch ($_POST['target'])
103      {
104        case 'all' :
105        {
106          foreach($page['filtered_users'] as $local_user)
107          {
108            array_push($collection, $local_user['id']);
109          }
110          break;
111        }
112        case 'selection' :
113        {
114          if (isset($_POST['selection']))
115          {
116            $collection = $_POST['selection'];
117          }
118          break;
119        }
120      }
121
122      if (count($collection) == 0)
123      {
124        array_push($page['errors'], l10n('Select at least one user'));
125      }
126    }
127
128    if (isset($_POST['pwdreset']) and count($collection) > 0)
129    {
130      if (in_array($conf['guest_id'], $collection))
131      {
132        array_push($page['errors'], l10n('UAM_Guest cannot be pwdreset'));
133        $template->append('errors', l10n('UAM_Guest cannot be pwdreset'));
134      }
135      if (($conf['guest_id'] != $conf['default_user_id']) and
136        in_array($conf['default_user_id'], $collection))
137      {
138        array_push($page['errors'], l10n('UAM_Default user cannot be pwgreset'));
139        $template->append('errors', l10n('UAM_Default user cannot be pwgreset'));
140      }
141      if (in_array($conf['webmaster_id'], $collection))
142      {
143        array_push($page['errors'], l10n('UAM_Webmaster cannot be pwdreset'));
144        $template->append('errors', l10n('UAM_Webmaster cannot be pwdreset'));
145      }
146      if (in_array($user['id'], $collection))
147      {
148        array_push($page['errors'], l10n('UAM_You cannot pwdreset your account'));
149        $template->append('errors', l10n('UAM_You cannot pwdreset your account'));
150      }
151
152      if (count($page['errors']) == 0)
153      { 
154        if (isset($_POST['confirm_pwdreset']) and 1 == $_POST['confirm_pwdreset'])
155        {
156          foreach ($collection as $user_id)
157          {
158            UAM_Set_PwdReset($user_id);
159          }
160          array_push(
161            $page['infos'],
162            l10n_dec(
163              'UAM %d user pwdreseted', 'UAM %d users pwdreseted',
164              count($collection)
165              )
166            );
167          $template->append('infos', l10n_dec(
168              'UAM %d user pwdreseted', 'UAM %d users pwdreseted',
169              count($collection)));
170          foreach ($page['filtered_users'] as $filter_key => $filter_user)
171          {
172            if (in_array($filter_user['id'], $collection))
173            {
174              unset($page['filtered_users'][$filter_key]);
175            }
176          }
177        }
178        else
179        {
180          array_push($page['errors'], l10n('UAM_You need to confirm pwdreset'));
181          $template->append('errors', l10n('UAM_You need to confirm pwdreset'));
182        }
183      }
184    } 
185    $template->set_prefilter('user_list', 'UAM_PwdReset_Prefilter');
186  }
187
188  /**
189   * UAM_PwdReset_Prefilter
190   * Adds action field for password reset in user_list.tpl
191   */
192  function UAM_PwdReset_Prefilter($content, &$smarty)
193  {
194    $search = '
195<fieldset>
196  <legend>{\'Deletions\'|@translate}</legend>
197  <label><input type="checkbox" name="confirm_deletion" value="1"> {\'confirm\'|@translate}</label>
198  <input class="submit" type="submit" value="{\'Delete selected users\'|@translate}" name="delete">
199</fieldset>
200';
201 
202    $addon = '
203<fieldset>
204  <legend>{\'UAM_PwdReset\'|@translate}</legend>
205  <label><input type="checkbox" name="confirm_pwdreset" value="1"> {\'confirm\'|@translate}</label>
206  <input class="submit" type="submit" value="{\'UAM_Password reset selected users\'|@translate}" name="pwdreset">
207</fieldset>
208';
209
210    $replacement = $addon.$search;
211
212    return str_replace($search, $replacement, $content);
213  }
214}
215?>
Note: See TracBrowser for help on using the repository browser.