forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanage_proj_create_page.php
200 lines (180 loc) · 5.72 KB
/
manage_proj_create_page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php
# MantisBT - A PHP based bugtracking system
# MantisBT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# MantisBT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with MantisBT. If not, see <http://www.gnu.org/licenses/>.
/**
* Create a project
*
* @package MantisBT
* @copyright Copyright 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright 2002 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*
* @uses core.php
* @uses access_api.php
* @uses authentication_api.php
* @uses config_api.php
* @uses current_user_api.php
* @uses event_api.php
* @uses form_api.php
* @uses gpc_api.php
* @uses html_api.php
* @uses lang_api.php
* @uses print_api.php
*/
require_once( 'core.php' );
require_api( 'access_api.php' );
require_api( 'authentication_api.php' );
require_api( 'config_api.php' );
require_api( 'current_user_api.php' );
require_api( 'event_api.php' );
require_api( 'form_api.php' );
require_api( 'gpc_api.php' );
require_api( 'html_api.php' );
require_api( 'lang_api.php' );
require_api( 'print_api.php' );
auth_reauthenticate();
access_ensure_global_level( config_get( 'create_project_threshold' ) );
layout_page_header();
layout_page_begin( 'manage_overview_page.php' );
print_manage_menu( 'manage_proj_page.php' );
$f_parent_id = gpc_get( 'parent_id', null );
?>
<div class="col-md-12 col-xs-12">
<div class="space-10"></div>
<?php if( project_table_empty() ) { ?>
<div class="alert alert-sm alert-warning" role="alert">
<i class="ace-icon fa fa-warning fa-lg"></i> <?php echo lang_get( 'create_first_project' ) ?>
</div>
<?php } ?>
<div id="manage-project-create-div" class="form-container">
<form method="post" id="manage-project-create-form" action="manage_proj_create.php">
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
<i class="ace-icon fa fa-puzzle-piece"></i>
<?php
if( null !== $f_parent_id ) {
echo lang_get( 'add_subproject_title' );
} else {
echo lang_get( 'add_project_title' );
} ?>
</h4>
</div>
<div class="widget-body">
<div class="widget-main no-padding">
<div class="table-responsive">
<table class="table table-bordered table-condensed table-striped">
<fieldset>
<?php
echo form_security_field( 'manage_proj_create' );
if( null !== $f_parent_id ) {
$f_parent_id = (int) $f_parent_id; ?>
<input type="hidden" name="parent_id" value="<?php echo $f_parent_id ?>" /><?php
} ?>
<tr>
<td class="category">
<span class="required">*</span> <?php echo lang_get( 'project_name' ) ?>
</td>
<td>
<input type="text" id="project-name" name="name" class="input-sm" size="60" maxlength="128" required />
</td>
</tr>
<tr>
<td class="category">
<?php echo lang_get( 'status' ) ?>
</td>
<td>
<select id="project-status" name="status" class="input-sm">
<?php print_enum_string_option_list( 'project_status' ) ?>
</select>
</td>
</tr>
<tr>
<td class="category">
<?php echo lang_get( 'inherit_global' ) ?>
</td>
<td>
<label>
<input type="checkbox" class="ace" id="project-inherit-global" name="inherit_global" checked="checked">
<span class="lbl"></span>
</label>
</td>
</tr>
<?php if( !is_null( $f_parent_id ) ) { ?>
<tr>
<td class="category">
<?php echo lang_get( 'inherit_parent' ) ?>
</td>
<td>
<label>
<input type="checkbox" class="ace" id="project-inherit-parent" name="inherit_parent" checked="checked">
<span class="lbl"></span>
</label>
</td>
</tr>
<?php
} ?>
<tr>
<td class="category">
<?php echo lang_get( 'view_status' ) ?>
</td>
<td>
<select id="project-view-state" name="view_state" class="input-sm">
<?php print_enum_string_option_list( 'project_view_state', config_get( 'default_project_view_status', null, ALL_USERS, ALL_PROJECTS ) ) ?>
</select>
</td>
</tr>
<?php
$g_project_override = ALL_PROJECTS;
if( file_is_uploading_enabled() && DATABASE !== config_get( 'file_upload_method' ) ) {
$t_file_path = '';
# Don't reveal the absolute path to non-administrators for security reasons
if( current_user_is_administrator() ) {
$t_file_path = config_get_global( 'absolute_path_default_upload_folder' );
}
?>
<tr>
<td class="category">
<?php echo lang_get( 'upload_file_path' ) ?>
</td>
<td>
<input type="text" id="project-file-path" name="file_path" class="input-sm" size="60" maxlength="250" value="<?php echo $t_file_path ?>" />
</td>
</tr>
<?php
} ?>
<tr>
<td class="category">
<?php echo lang_get( 'description' ) ?>
</td>
<td>
<textarea class="form-control" id="project-description" name="description" cols="70" rows="5"></textarea>
</td>
</tr>
<?php event_signal( 'EVENT_MANAGE_PROJECT_CREATE_FORM' ) ?>
</fieldset>
</table>
</div>
</div>
</div>
<div class="widget-toolbox padding-8 clearfix">
<span class="required pull-right"> * <?php echo lang_get( 'required' ) ?></span>
<input type="submit" class="btn btn-primary btn-white btn-round" value="<?php echo lang_get( 'add_project_button' ) ?>" />
</div>
</div>
</div>
</form>
</div>
<?php
layout_page_end();