[ Index ]
 

Code source de Mantis 1.1.0rc3

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/ -> bug_actiongroup_ext_page.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: bug_actiongroup_ext_page.php,v 1.2.2.1 2007-10-13 22:32:33 giallu Exp $
  22      # --------------------------------------------------------
  23  
  24      require_once ( 'core.php' );
  25  
  26      require_once( $t_core_path.'bug_group_action_api.php' );
  27  
  28      auth_ensure_user_authenticated();
  29  
  30      $f_action = gpc_get_string( 'action' );
  31      $f_bug_arr = gpc_get_int_array( 'bug_arr', array() );
  32  
  33      # redirect to view issues if nothing is selected
  34      if ( is_blank( $f_action ) || ( 0 == sizeof( $f_bug_arr ) ) ) {
  35          print_header_redirect( 'view_all_bug_page.php' );
  36      }
  37  
  38    # redirect to view issues page if action doesn't have ext_* prefix.
  39    # This should only occur if this page is called directly.
  40      $t_external_action_prefix = 'EXT_';
  41      if ( strpos( $f_action, $t_external_action_prefix ) !== 0 ) {
  42          print_header_redirect( 'view_all_bug_page.php' );
  43    }
  44  
  45      $t_external_action = strtolower( substr( $f_action, strlen( $t_external_action_prefix ) ) );
  46      $t_form_fields_page = 'bug_actiongroup_' . $t_external_action . '_inc.php';
  47  
  48      bug_group_action_print_top();
  49  ?>
  50  
  51      <br />
  52  
  53      <div align="center">
  54      <form method="post" action="bug_actiongroup_ext.php">
  55          <input type="hidden" name="action" value="<?php echo string_attribute( $t_external_action ) ?>" />
  56          <input type="hidden" name="action" value="<?php echo string_attribute( $t_external_action ) ?>" />
  57  <table class="width75" cellspacing="1">
  58      <?php
  59          bug_group_action_print_title( $t_external_action );
  60          bug_group_action_print_hidden_fields( $f_bug_arr );
  61          bug_group_action_print_action_fields( $t_external_action );
  62      ?>
  63  </table>
  64      </form>
  65      </div>
  66  
  67      <br />
  68  
  69  <?php
  70      bug_group_action_print_bug_list( $f_bug_arr );
  71      bug_group_action_print_bottom();
  72  ?>


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