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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
<?php
/**
* Site Admin group properties editing page
*
* Copyright 1999-2001 (c) VA Linux Systems
*
* @version $Id: groupedit.php 4393 2005-05-27 19:36:45Z tom $
*
* This file is part of GForge.
*
* GForge 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.
*
* GForge 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 GForge; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once('pre.php');
require_once('common/include/license.php');
require_once('www/admin/admin_utils.php');
require_once('www/project/admin/project_admin_utils.php');
session_require(array('group'=>'1','admin_flags'=>'A'));
$group =& group_get_object($group_id);
if (!$group || !is_object($group)) {
exit_error('Error','Could Not Get Group');
} elseif ($group->isError()) {
exit_error('Error',$group->getErrorMessage());
}
// This function performs very update
function do_update(&$group, $is_public, $status, $license,
$group_type, $unix_box, $http_domain, $scm_box='') {
global $feedback;
global $Language;
db_begin();
if (!$group->setStatus(session_get_user(), $status)) {
$feedback .= $group->getErrorMessage();
db_rollback();
return false;
}
if (!$group->updateAdmin(session_get_user(), $is_public, $license, $group_type, $unix_box, $http_domain)) {
$feedback .= $group->getErrorMessage();
db_rollback();
return false;
}
if($group->usesSCM() && !$group->setSCMBox($scm_box)) {
$feedback .= $group->getErrorMessage();
db_rollback();
return false;
}
db_commit();
$feedback .= $Language->getText('admin_groupedit','updated').'<br /> ';
return true;
}
if ($submit) {
do_update($group, $form_public, $form_status, $form_license,
1, $form_box, $form_domain, $form_scm_box);
} else if ($resend) {
$group->sendApprovalEmail();
$feedback .= $Language->getText('admin_groupedit','instruction_email_sent').'<br /> ';
}
site_admin_header(array('title'=>$Language->getText('admin_groupedit','title')));
echo '<h2>'.$group->getPublicName().'</h2>' ;?>
<p>
<?php print "<a href=\"/project/admin/?group_id=$group_id\"><h3>".$Language->getText('admin_groupedit','project_admin'). "</h3></a>"; ?></p>
<?php print "<a href=\"groupdelete.php?group_id=$group_id\"><h3>".$Language->getText('admin_groupdelete','title'). "</h3></a>"; ?></p>
<p>
<form action="<?php echo $PHP_SELF; ?>" method="post">
<table>
<tr>
<td>
<?php echo $Language->getText('admin_groupedit','status') ?>:
</td>
<td>
<?php // PLEASE DONT TRANSLATE THIS, THIS IS DATABASE INFO THAT CANT BE DIFFERENT AMONG LANGUAGES
$status = $group->getStatus();
if($status == 'P') {
// we cannot update the status of a pending project
echo '<input type="hidden" name="form_status" value="P" />';
echo $Language->getText('admin_groupedit','pending').' ';
} else {
echo html_build_select_box_from_arrays(
array(
'I',
'A',
'P',
'H'
),
array(
$Language->getText('admin_groupedit','incomplete'),
$Language->getText('admin_groupedit','active'),
$Language->getText('admin_groupedit','pending'),
$Language->getText('admin_groupedit','holding')
),
'form_status', $status, false
);
} ?>
</td>
</tr>
<tr>
<td>
<?php echo $Language->getText('admin_groupedit','public') ?>:
</td>
<td>
<?php // PLEASE DONT TRANSLATE THIS, THIS IS DATABASE INFO THAT CANT BE DIFFERENT AMONG LANGUAGES
echo html_build_select_box_from_arrays(
array(
'0',
'1'
),
array(
$Language->getText('admin_groupedit','no'),
$Language->getText('admin_groupedit','yes')
),
'form_public', $group->isPublic(), false
); ?>
</td>
</tr>
<tr>
<td>
<?php echo $Language->getText('admin_groupedit','unix_group_name'); ?>
</td>
<td>
<?php echo $group->getUnixName(); ?>
</td>
</tr>
<tr>
<td>
<?php echo $Language->getText('admin','license'); ?>
</td>
<td>
<?php
echo license_selectbox('form_license',$group->getLicense());
?>
</td>
</tr>
<?php
if ($group->getLicense() == GROUP_LICENSE_OTHER) {
?>
<tr>
<td><?php echo $Language->getText('admin','license_other'); ?>
</td>
<td>
<?php echo $group->getLicenseOther(); ?>
</td>
</tr>
<?php } ?>
<?php
global $sys_use_shell;
if ($sys_use_shell) {
?>
<tr>
<td>
<?php echo $Language->getText('admin','home_box'); ?>
</td>
<td>
<input type="text" name="form_box" value="<?php echo $group->getUnixBox(); ?>" />
</td>
</tr>
<?php } //end sus_use_shell condition ?>
<tr>
<td>
<?php echo $Language->getText('admin','http_domain') ?>
</td>
<td>
<input size="40" type="text" name="form_domain" value="<?php echo $group->getDomain(); ?>" />
</td>
</tr>
<tr>
<td>
<?php echo $Language->getText('admin_groupedit','registration_application'); ?>
</td>
<td>
<?php echo $group->getRegistrationPurpose(); ?>
</td>
</tr>
<?php
if ($group->usesSCM()) {
?>
<tr>
<td><?php echo $Language->getText('admin','scm_box'); ?></td>
<td><input size="40" type="text" name="form_scm_box" value="<?php echo $group->getSCMBox(); ?>"/></td>
</tr>
<?php
}
?>
</table>
<input type="hidden" name="group_id" value="<?php print $group_id; ?>" />
<br /><input type="submit" name="submit" value="<?php echo $Language->getText('admin_groupedit','update'); ?>" />
<input type="submit" name="resend" value="<?php echo $Language->getText('admin_groupedit','new_project_instruction_email'); ?>" />
</form></p>
<?php
echo show_grouphistory($group->getID());
site_admin_footer(array());
?>
|