3 * Project Admin Main Page
5 * This page contains administrative information for the project as well
6 * as allows to manage it. This page should be accessible to all project
7 * members, but only admins may perform most functions.
9 * Copyright 2004 GForge, LLC - Tim Perdue
10 * Copyright 2010, Franck Villaume - Capgemini
11 * Copyright 2010-2011, Alain Peyrat - Alcatel-Lucent
12 * http://fusionforge.org
14 * This file is part of FusionForge. FusionForge is free software;
15 * you can redistribute it and/or modify it under the terms of the
16 * GNU General Public License as published by the Free Software
17 * Foundation; either version 2 of the Licence, or (at your option)
20 * FusionForge is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License along
26 * with FusionForge; if not, write to the Free Software Foundation, Inc.,
27 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 require_once('../../env.inc.php');
31 require_once $gfcommon.'include/pre.php';
32 require_once $gfwww.'include/role_utils.php';
33 require_once $gfwww.'project/admin/project_admin_utils.php';
34 require_once $gfcommon.'include/GroupJoinRequest.class.php';
36 $group_id = getIntFromRequest('group_id');
38 session_require_perm ('project_admin', $group_id) ;
40 // get current information
41 $group = group_get_object($group_id);
42 if (!$group || !is_object($group)) {
44 } elseif ($group->isError()) {
45 exit_error($group->getErrorMessage(),'admin');
50 // If this was a submission, make updates
51 if (getStringFromRequest('submit')) {
52 $form_group_name = getStringFromRequest('form_group_name');
53 $form_shortdesc = getStringFromRequest('form_shortdesc');
54 $form_homepage = getStringFromRequest('form_homepage');
55 $logo_image_id = getIntFromRequest('logo_image_id');
56 $use_mail = getStringFromRequest('use_mail');
57 $use_survey = getStringFromRequest('use_survey');
58 $use_forum = getStringFromRequest('use_forum');
59 $use_pm = getStringFromRequest('use_pm');
60 $use_scm = getStringFromRequest('use_scm');
61 $use_news = getStringFromRequest('use_news');
62 $use_docman = getStringFromRequest('use_docman');
63 $use_ftp = getStringFromRequest('use_ftp');
64 $use_tracker = getStringFromRequest('use_tracker');
65 $use_frs = getStringFromRequest('use_frs');
66 $use_stats = getStringFromRequest('use_stats');
67 $tags = getStringFromRequest('form_tags');
68 $addTags = getArrayFromRequest('addTags');
69 $new_doc_address = getStringFromRequest('new_doc_address');
70 $send_all_docs = getStringFromRequest('send_all_docs');
72 if (trim($tags) != "") {
75 $tags .= implode(",", $addTags);
77 $res = $group->update(
104 $error_msg .= $group->getErrorMessage();
106 $feedback .= _('Project information updated');
110 project_admin_header(array('title'=>_('Project Information'), 'group'=>$group->getID()));
113 <table class="my-layout-table">
117 <?php echo $HTML->boxTop(_('Misc. Project Information'));
119 if (forge_get_config('use_shell')) {
121 <p><?php echo _('Group shell (SSH) server:') ?> <strong><?php echo $group->getUnixName().'.'.forge_get_config('web_host'); ?></strong></p>
122 <p><?php echo _('Group directory on shell server:') ?><br/><strong><?php echo account_group_homedir($group->getUnixName()); ?></strong></p>
123 <p><?php echo _('Project WWW directory on shell server:') ?><br /><strong><?php echo account_group_homedir($group->getUnixName()).'/htdocs'; ?></strong></p>
125 } //end of use_shell condition
128 <form action="<?php echo getStringFromServer('PHP_SELF'); ?>" method="post">
130 <input type="hidden" name="group_id" value="<?php echo $group->getID(); ?>" />
132 <h2><?php echo _('Descriptive Project Name'); ?></h2>
134 <input type="text" name="form_group_name" value="<?php echo $group->getPublicName(); ?>" size="40" maxlength="40" />
137 <h2><?php echo _('Short Description'); ?></h2>
139 <?php echo _('Maximum 255 characters, HTML will be stripped from this description'); ?>
142 <textarea cols="80" rows="3" name="form_shortdesc">
143 <?php echo $group->getDescription(); ?>
147 <?php if (forge_get_config('use_project_tags')) { ?>
148 <h2><?php echo _('Project tags'); ?></h2>
150 <?php echo _('Add tags (use comma as separator): ') ?><br />
151 <input type="text" name="form_tags" size="100" value="<?php echo $group->getTags(); ?>" />
154 $infos = getAllProjectTags();
157 echo _('Or pick a tag from those used by other projects: ');
159 echo '<table width="100%"><thead><tr>';
160 echo '<th>'._('Tags').'</th>';
161 echo '<th>'._('Projects').'</th>';
162 echo '</tr></thead><tbody>';
164 $unix_name = $group->getUnixName();
165 foreach ($infos as $tag => $plist) {
168 foreach($plist as $project) {
169 $links[] = util_make_link('/projects/'.$project['unix_group_name'].'/',$project['unix_group_name']);
170 if ($project['group_id'] == $group_id) {
171 $disabled = ' disabled="disabled"';
176 echo '<td><input type="checkbox" name="addTags[]" value="'.$tag.'"'.$disabled.' /> ';
178 echo '<s>'.$tag.'</s>';
183 echo '<td>'.implode(' ', $links).'</td>' ;
186 echo '</tbody></table>' ;
190 <h2><?php echo _('Trove Categorization'); ?></h2>
192 <a href="/project/admin/group_trove.php?group_id=<?php echo $group->getID(); ?>">[<?php echo _('Edit Trove'); ?>]</a>
195 <h2><?php echo _('Homepage Link') ?></h2>
197 <input type="text" name="form_homepage" size="100" value="<?php echo $group->getHomePage(); ?>" />
201 // This function is used to render checkboxes below
204 return 'checked="checked"';
212 if(forge_get_config('use_mail')) {
214 <input type="hidden" name="use_mail" value="<?php echo ($group->usesMail() ? '1' : '0'); ?>" />
218 if(forge_get_config('use_survey')) {
220 <input type="hidden" name="use_survey" value="<?php echo ($group->usesSurvey() ? '1' : '0'); ?>" />
224 if(forge_get_config('use_forum')) {
226 <input type="hidden" name="use_forum" value="<?php echo ($group->usesForum() ? '1' : '0'); ?>" />
230 if(forge_get_config('use_pm')) {
232 <input type="hidden" name="use_pm" value="<?php echo ($group->usesPM() ? '1' : '0'); ?>" />
236 if(forge_get_config('use_scm')) {
238 <input type="hidden" name="use_scm" value="<?php echo ($group->usesSCM() ? '1' : '0'); ?>" />
242 if(forge_get_config('use_news')) {
244 <input type="hidden" name="use_news" value="<?php echo ($group->usesNews() ? '1' : '0'); ?>" />
248 if(forge_get_config('use_docman')) {
250 <input type="hidden" name="use_docman" value="<?php echo ($group->usesDocman() ? '1' : '0'); ?>" />
254 if(forge_get_config('use_ftp')) {
256 <input type="hidden" name="use_ftp" value="<?php echo ($group->usesFTP() ? '1' : '0'); ?>" />
260 if(forge_get_config('use_tracker')) {
262 <input type="hidden" name="use_tracker" value="<?php echo ($group->usesTracker() ? '1' : '0'); ?>" />
266 if(forge_get_config('use_frs')) {
268 <input type="hidden" name="use_frs" value="<?php echo ($group->usesFRS() ? '1' : '0'); ?>" />
271 <input type="hidden" name="use_stats" value="<?php echo ($group->usesStats() ? '1' : '0'); ?>" />
274 <?php echo _('If you wish, you can provide default email addresses to which new submissions will be sent') ?>.<br />
275 <strong><?php echo _('New Document Submissions') ?>:</strong><br />
276 <input type="text" name="new_doc_address" value="<?php echo $group->getDocEmailAddress(); ?>" size="40" maxlength="250" />
277 <?php echo _('(send on all updates)') ?>
278 <input type="checkbox" name="send_all_docs" value="1" <?php echo c($group->docEmailAll()); ?> />
282 <input type="submit" name="submit" value="<?php echo _('Update') ?>" />
288 plugin_hook('hierarchy_views', array($group_id, 'admin'));
290 echo $HTML->boxBottom();?>
298 project_admin_footer(array());
302 // c-file-style: "bsd"