[ Index ]

PHP Cross Reference of MantisBT

title

Body

[close]

/ -> manage_proj_ver_edit_page.php (source)

   1  <?php
   2  # MantisBT - A PHP based bugtracking system
   3  
   4  # MantisBT is free software: you can redistribute it and/or modify
   5  # it under the terms of the GNU General Public License as published by
   6  # the Free Software Foundation, either version 2 of the License, or
   7  # (at your option) any later version.
   8  #
   9  # MantisBT is distributed in the hope that it will be useful,
  10  # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  # GNU General Public License for more details.
  13  #
  14  # You should have received a copy of the GNU General Public License
  15  # along with MantisBT.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * @package MantisBT
  19   * @copyright Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
  20   * @copyright Copyright (C) 2002 - 2011  MantisBT Team - mantisbt-dev@lists.sourceforge.net
  21   * @link http://www.mantisbt.org
  22   *
  23   * @uses core.php
  24   * @uses access_api.php
  25   * @uses authentication_api.php
  26   * @uses config_api.php
  27   * @uses constant_inc.php
  28   * @uses event_api.php
  29   * @uses form_api.php
  30   * @uses gpc_api.php
  31   * @uses helper_api.php
  32   * @uses html_api.php
  33   * @uses lang_api.php
  34   * @uses string_api.php
  35   * @uses version_api.php
  36   */
  37  
  38  /**
  39   * MantisBT Core API's
  40   */
  41  require_once ( 'core.php' );
  42  require_api( 'access_api.php' );
  43  require_api( 'authentication_api.php' );
  44  require_api( 'config_api.php' );
  45  require_api( 'constant_inc.php' );
  46  require_api( 'event_api.php' );
  47  require_api( 'form_api.php' );
  48  require_api( 'gpc_api.php' );
  49  require_api( 'helper_api.php' );
  50  require_api( 'html_api.php' );
  51  require_api( 'lang_api.php' );
  52  require_api( 'string_api.php' );
  53  require_api( 'version_api.php' );
  54  
  55  require_js( 'jscalendar/calendar.js' );
  56  require_js( 'jscalendar/lang/calendar-en.js' );
  57  require_js( 'jscalendar/calendar-setup.js' );
  58  require_css( 'calendar-blue.css' );
  59  
  60  auth_reauthenticate();
  61  
  62  $f_version_id = gpc_get_int( 'version_id' );
  63  
  64  $t_version = version_get( $f_version_id );
  65  
  66  access_ensure_project_level( config_get( 'manage_project_threshold' ), $t_version->project_id );
  67  
  68  html_page_top();
  69  
  70  print_manage_menu( 'manage_proj_ver_edit_page.php' ); ?>
  71  
  72  <div id="manage-proj-version-update-div" class="form-container">
  73      <form id="manage-proj-version-update-form" method="post" action="manage_proj_ver_update.php">
  74          <fieldset>
  75              <legend><span><?php echo lang_get( 'edit_project_version_title' ) ?></span></legend>
  76              <?php echo form_security_field( 'manage_proj_ver_update' ) ?>
  77              <input type="hidden" name="version_id" value="<?php echo string_attribute( $t_version->id ) ?>" />
  78              <div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
  79                  <label for="proj-version-new-version"><span><?php echo lang_get( 'version' ) ?></span></label>
  80                  <span class="input"><input type="text" id="proj-version-new-version" name="new_version" size="32" maxlength="64" value="<?php echo string_attribute( $t_version->version ) ?>" /></span>
  81                  <span class="label-style"></span>
  82              </div>
  83              <div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
  84                  <label for="proj-version-date-order"><span><?php echo lang_get( 'date_order' ) ?></span></label>
  85                  <span class="input"><input type="text" id="proj-version-date-order" name="date_order" class="datetime" size="32" value="<?php echo (date_is_null( $t_version->date_order ) ? '' : string_attribute( date( config_get( 'calendar_date_format' ), $t_version->date_order ) ) ) ?>" /></span>
  86                  <span class="label-style"></span>
  87              </div>
  88              <div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
  89                  <label for="proj-version-description"><span><?php echo lang_get( 'description' ) ?></span></label>
  90                  <span class="textarea"><textarea id="proj-version-description" name="description" cols="60" rows="5"><?php echo string_attribute( $t_version->description ) ?></textarea></span>
  91                  <span class="label-style"></span>
  92              </div>
  93              <div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
  94                  <label for="proj-version-released"><span><?php echo lang_get( 'released' ) ?></span></label>
  95                  <span class="checkbox"><input type="checkbox" id="proj-version-released" name="released" <?php check_checked( $t_version->released, VERSION_RELEASED ); ?> /></span>
  96                  <span class="label-style"></span>
  97              </div>
  98              <div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
  99                  <label for="proj-version-obsolete"><span><?php echo lang_get( 'obsolete' ) ?></span></label>
 100                  <span class="checkbox"><input type="checkbox" id="proj-version-obsolete" name="obsolete" <?php check_checked( $t_version->obsolete, true ); ?> /></span>
 101                  <span class="label-style"></span>
 102              </div>
 103              
 104              <?php event_signal( 'EVENT_MANAGE_VERSION_UPDATE_FORM', array( $t_version->id ) ); ?>
 105              <span class="submit-button"><input type="submit" class="button" value="<?php echo lang_get( 'update_version_button' ) ?>" /></span>
 106          </fieldset>
 107      </form>
 108  </div>
 109  
 110  <div class="form-container">
 111      <form method="post" action="manage_proj_ver_delete.php" class="action-button">
 112          <fieldset>
 113              <?php echo form_security_field( 'manage_proj_ver_delete' ) ?>
 114              <input type="hidden" name="version_id" value="<?php echo string_attribute( $t_version->id ) ?>" />
 115              <input type="submit" class="button" value="<?php echo lang_get( 'delete_version_button' ) ?>" />
 116          </fieldset>
 117      </form>
 118  </div>
 119  
 120  <?php
 121  html_page_bottom();


Generated: Thu Jul 28 15:48:31 2011 Cross-referenced by PHPXref 0.7