[ Index ]
 

Code source de Mantis 1.1.0rc3

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/ -> account_prefs_update.php (source)

   1  <?php
   2  # Mantis - a php based bugtracking system
   3  
   4  # Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
   5  # Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net
   6  
   7  # Mantis is free software: you can redistribute it and/or modify
   8  # it under the terms of the GNU General Public License as published by
   9  # the Free Software Foundation, either version 2 of the License, or
  10  # (at your option) any later version.
  11  #
  12  # Mantis is distributed in the hope that it will be useful,
  13  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15  # GNU General Public License for more details.
  16  #
  17  # You should have received a copy of the GNU General Public License
  18  # along with Mantis.  If not, see <http://www.gnu.org/licenses/>.
  19  
  20      # --------------------------------------------------------
  21      # $Id: account_prefs_update.php,v 1.36.16.1 2007-10-13 22:32:08 giallu Exp $
  22      # --------------------------------------------------------
  23  ?>
  24  <?php
  25      # Updates prefs then redirect to account_prefs_page.php3
  26  ?>
  27  <?php
  28      require_once ( 'core.php' );
  29  
  30      $t_core_path = config_get( 'core_path' );
  31  
  32      require_once( $t_core_path.'user_pref_api.php' );
  33  ?>
  34  <?php
  35      auth_ensure_user_authenticated();
  36  ?>
  37  <?php
  38      $f_user_id                    = gpc_get_int( 'user_id' );
  39      $f_redirect_url                = gpc_get_string( 'redirect_url' );
  40  
  41      # If the user is trying to modify an account other than their own
  42      #  they must have high enough permissions to do so
  43      # @@@ should we really be sharing this file between the manage section
  44      #  and the account section.  The account section should always be operating
  45      #  on the current user, so passing in a user ID here is a little odd.
  46      if ( auth_get_current_user_id() != $f_user_id ) {
  47          access_ensure_global_level( config_get( 'manage_user_threshold' ) );
  48      }
  49  
  50      user_ensure_unprotected( $f_user_id );
  51  
  52      $t_prefs = user_pref_get( $f_user_id );
  53  
  54      $t_prefs->redirect_delay    = gpc_get_int( 'redirect_delay' );
  55      $t_prefs->refresh_delay        = gpc_get_int( 'refresh_delay' );
  56      $t_prefs->default_project    = gpc_get_int( 'default_project' );
  57  
  58      $t_prefs->language            = gpc_get_string( 'language' );
  59  
  60      $t_prefs->advanced_report    = gpc_get_bool( 'advanced_report' );
  61      $t_prefs->advanced_view        = gpc_get_bool( 'advanced_view' );
  62      $t_prefs->advanced_update    = gpc_get_bool( 'advanced_update' );
  63      $t_prefs->email_on_new        = gpc_get_bool( 'email_on_new' );
  64      $t_prefs->email_on_assigned    = gpc_get_bool( 'email_on_assigned' );
  65      $t_prefs->email_on_feedback    = gpc_get_bool( 'email_on_feedback' );
  66      $t_prefs->email_on_resolved    = gpc_get_bool( 'email_on_resolved' );
  67      $t_prefs->email_on_closed    = gpc_get_bool( 'email_on_closed' );
  68      $t_prefs->email_on_reopened    = gpc_get_bool( 'email_on_reopened' );
  69      $t_prefs->email_on_bugnote    = gpc_get_bool( 'email_on_bugnote' );
  70      $t_prefs->email_on_status    = gpc_get_bool( 'email_on_status' );
  71      $t_prefs->email_on_priority    = gpc_get_bool( 'email_on_priority' );
  72      $t_prefs->email_on_new_min_severity            = gpc_get_int( 'email_on_new_min_severity' );
  73      $t_prefs->email_on_assigned_min_severity    = gpc_get_int( 'email_on_assigned_min_severity' );
  74      $t_prefs->email_on_feedback_min_severity    = gpc_get_int( 'email_on_feedback_min_severity' );
  75      $t_prefs->email_on_resolved_min_severity    = gpc_get_int( 'email_on_resolved_min_severity' );
  76      $t_prefs->email_on_closed_min_severity        = gpc_get_int( 'email_on_closed_min_severity' );
  77      $t_prefs->email_on_reopened_min_severity    = gpc_get_int( 'email_on_reopened_min_severity' );
  78      $t_prefs->email_on_bugnote_min_severity        = gpc_get_int( 'email_on_bugnote_min_severity' );
  79      $t_prefs->email_on_status_min_severity        = gpc_get_int( 'email_on_status_min_severity' );
  80      $t_prefs->email_on_priority_min_severity    = gpc_get_int( 'email_on_priority_min_severity' );
  81  
  82      $t_prefs->bugnote_order = gpc_get_string( 'bugnote_order' );
  83      $t_prefs->email_bugnote_limit = gpc_get_int( 'email_bugnote_limit' );
  84  
  85      # prevent users from changing other user's accounts
  86      if ( $f_user_id != auth_get_current_user_id() ) {
  87          access_ensure_project_level( ADMINISTRATOR );
  88      }
  89  
  90      # make sure the delay isn't too low
  91      if (( config_get( 'min_refresh_delay' ) > $t_prefs->refresh_delay )&&
  92          ( $t_prefs->refresh_delay != 0 )) {
  93          $t_prefs->refresh_delay = config_get( 'min_refresh_delay' );
  94      }
  95  
  96      user_pref_set( $f_user_id, $t_prefs );
  97  
  98      html_page_top1();
  99      html_meta_redirect( $f_redirect_url );
 100      html_page_top2();
 101      echo '<br /><div align="center">';
 102  
 103      echo lang_get( 'operation_successful' );
 104  
 105      echo '<br />';
 106      print_bracket_link( $f_redirect_url, lang_get( 'proceed' ) );
 107      echo '<br /></div>';
 108      html_page_bottom1( __FILE__ );
 109  ?>


Généré le : Thu Nov 29 09:42:17 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics