Ignore:
Timestamp:
Sep 30, 2011, 1:51:10 PM (13 years ago)
Author:
Eric
Message:

Merge r12271 from trunk to branch 2.30

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserAdvManager/branches/2.30/main.inc.php

    r12248 r12272  
    2929
    3030// Plugin administration panel
     31// ---------------------------
    3132add_event_handler('get_admin_plugin_menu_links', 'UAM_admin_menu');
    3233
    33 /* Lastvisit table feed for Ghost Tracker */
     34// Lastvisit table feed for Ghost Tracker
     35// --------------------------------------
    3436add_event_handler('loc_begin_index', 'UAM_GhostTracker');
    3537
    3638// User creation
     39// -------------
    3740add_event_handler('register_user', 'UAM_Adduser');
    3841
    3942// User deletion
     43// -------------
    4044add_event_handler('delete_user', 'UAM_Deluser');
    4145
    4246// Check users registration
     47// ------------------------
    4348add_event_handler('register_user_check', 'UAM_RegistrationCheck', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
    4449
     
    4954
    5055// Redirection to profile page
     56// ---------------------------
    5157add_event_handler('login_success', 'UAM_LoginTasks');
    5258
    5359// Adding customized text to lost password email
     60// ---------------------------------------------
    5461add_event_handler('render_lost_password_mail_content', 'UAM_lost_password_mail_content');
    5562
    5663// *** Important ! This is necessary to make email exclusion work in admin's users management panel ***
     64// ----------------------------------------------------------------------------------------------------
    5765add_event_handler('init', 'UAM_InitPage');
    5866
    5967// PWG_Stuffs module
     68// -----------------
    6069if ((isset($conf_UAM[33]) and $conf_UAM[33] == 'true'))
    6170{
     
    6473
    6574// Add new feature in user_list - Password Reset
     75// ---------------------------------------------
    6676if ((isset($conf_UAM[38]) and $conf_UAM[38] == 'true'))
    6777{
    68   // add new column on user_list
     78  // Add new column on user_list
     79  // ---------------------------
    6980  add_event_handler('loc_visible_user_list', 'UAM_loc_visible_user_list');
    7081
    71   //add prefilter on user_list
     82  // Add prefilter on user_list
     83  // --------------------------
    7284  add_event_handler('loc_begin_admin', 'UAM_PwdReset_Action',60);
    73  
     85
     86  /**
     87   * UAM_PwdReset_Action - Triggered on UAM_PwdReset_Action
     88   * Handle passord reset action in user_list.php
     89   */
    7490  function UAM_PwdReset_Action()
    7591  {
     
    170186  }
    171187
     188  /**
     189   * UAM_PwdReset_Prefilter
     190   * Adds action field for password reset in user_list.tpl
     191   */
    172192  function UAM_PwdReset_Prefilter($content, &$smarty)
    173193  {
Note: See TracChangeset for help on using the changeset viewer.