Fix #11417: Allow EVENT_MENU_MAIN plugin events to return null
[mantis/radio.git] / proj_doc_edit_page.php
blob8539ace8d9a6bdf1f3c13175cbf0af0b3696ad65
1 <?php
2 # MantisBT - A PHP based bugtracking system
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.
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.
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/>.
17 /**
18 * @package MantisBT
19 * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org
20 * @copyright Copyright (C) 2002 - 2010 MantisBT Team - mantisbt-dev@lists.sourceforge.net
21 * @link http://www.mantisbt.org
23 * @uses core.php
24 * @uses access_api.php
25 * @uses config_api.php
26 * @uses database_api.php
27 * @uses file_api.php
28 * @uses form_api.php
29 * @uses gpc_api.php
30 * @uses html_api.php
31 * @uses lang_api.php
32 * @uses print_api.php
33 * @uses string_api.php
34 * @uses utility_api.php
37 require_once( 'core.php' );
38 require_api( 'access_api.php' );
39 require_api( 'config_api.php' );
40 require_api( 'database_api.php' );
41 require_api( 'file_api.php' );
42 require_api( 'form_api.php' );
43 require_api( 'gpc_api.php' );
44 require_api( 'html_api.php' );
45 require_api( 'lang_api.php' );
46 require_api( 'print_api.php' );
47 require_api( 'string_api.php' );
48 require_api( 'utility_api.php' );
50 # Check if project documentation feature is enabled.
51 if ( OFF == config_get( 'enable_project_documentation' ) ||
52 !file_is_uploading_enabled() ||
53 !file_allow_project_upload() ) {
54 access_denied();
57 $f_file_id = gpc_get_int( 'file_id' );
59 $c_file_id = db_prepare_int( $f_file_id );
60 $t_project_id = file_get_field( $f_file_id, 'project_id', 'project' );
62 access_ensure_project_level( config_get( 'upload_project_file_threshold' ), $t_project_id );
64 $t_proj_file_table = db_get_table( 'project_file' );
65 $query = "SELECT *
66 FROM $t_proj_file_table
67 WHERE id=" . db_param();
68 $result = db_query_bound( $query, Array( $c_file_id ) );
69 $row = db_fetch_array( $result );
70 extract( $row, EXTR_PREFIX_ALL, 'v' );
72 $v_title = string_attribute( $v_title );
73 $v_description = string_textarea( $v_description );
75 $t_max_file_size = (int)min( ini_get_number( 'upload_max_filesize' ), ini_get_number( 'post_max_size' ), config_get( 'max_file_size' ) );
77 html_page_top();
80 <br />
81 <div align="center">
82 <form method="post" enctype="multipart/form-data" action="proj_doc_update.php">
83 <?php echo form_security_field( 'proj_doc_update' ) ?>
84 <table class="width75" cellspacing="1">
85 <tr>
86 <td class="form-title">
87 <input type="hidden" name="file_id" value="<?php echo $f_file_id ?>" />
88 <?php echo lang_get( 'upload_file_title' ) ?>
89 </td>
90 <td class="right">
91 <?php print_doc_menu() ?>
92 </td>
93 </tr>
94 <tr class="row-1">
95 <td class="category" width="20%">
96 <span class="required">*</span><?php echo lang_get( 'title' ) ?>
97 </td>
98 <td width="80%">
99 <input type="text" name="title" size="70" maxlength="250" value="<?php echo $v_title ?>" />
100 </td>
101 </tr>
102 <tr class="row-2">
103 <td class="category">
104 <?php echo lang_get( 'description' ) ?>
105 </td>
106 <td>
107 <textarea name="description" cols="60" rows="7"><?php echo $v_description ?></textarea>
108 </td>
109 </tr>
110 <tr class="row-1">
111 <td class="category">
112 <?php echo lang_get( 'filename' ) ?>
113 </td>
114 <td>
115 <?php
116 $t_href = '<a href="file_download.php?file_id='.$v_id.'&amp;type=doc">';
117 echo $t_href;
118 print_file_icon( $v_filename );
119 echo '</a>&nbsp;' . $t_href . file_get_display_name( $v_filename ) . '</a>';
121 </td>
122 </tr>
123 <tr class="row-2">
124 <td class="category">
125 <?php echo lang_get( 'select_file' ); ?><br />
126 <?php // FIXME: hard coded "k" in here. ?>
127 <span class="small"><?php echo lang_get( 'max_file_size_label' ) . lang_get( 'word_separator' ) . number_format( $t_max_file_size/1000 ) ?>k</span>
128 </td>
129 <td>
130 <input type="hidden" name="max_file_size" value="<?php echo $t_max_file_size ?>" />
131 <input name="file" type="file" size="70" />
132 </td>
133 <tr>
134 <tr>
135 <td class="left">
136 <span class="required"> * <?php echo lang_get( 'required' ) ?></span>
137 </td>
138 <td>
139 <input type="submit" class="button" value="<?php echo lang_get( 'file_update_button' ) ?>" />
140 </td>
141 </tr>
142 </table>
143 </form>
145 <br />
146 <form method="post" action="proj_doc_delete.php">
147 <?php echo form_security_field( 'proj_doc_delete' ) ?>
148 <input type="hidden" name="file_id" value="<?php echo $f_file_id ?>" />
149 <input type="hidden" name="title" value="<?php echo $v_title ?>" />
150 <input type="submit" class="button" value="<?php echo lang_get( 'file_delete_button' ) ?>" />
151 </form>
152 </div>
154 <?php
155 html_page_bottom();