3 * Projects Hierarchy plugin
5 * Copyright 2011, Franck Villaume - Capgemini
6 * http://fusionforge.org
8 * This file is part of FusionForge. FusionForge is free software;
9 * you can redistribute it and/or modify it under the terms of the
10 * GNU General Public License as published by the Free Software
11 * Foundation; either version 2 of the Licence, or (at your option)
14 * FusionForge is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with FusionForge; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 global $projectsHierarchy;
29 $projectsHierarchyProjectConf = $projectsHierarchy->getConf($group_id);
30 if (!$projectsHierarchyProjectConf) {
31 echo '<div class="error">'._('Cannot retrieve data from DB').'</div>';
33 echo $HTML->boxTop(_('Manage project configuration'));
34 echo '<form method="post" action="?type=admin&&pluginname='.$projectsHierarchy->name.'&action=updateProjectConf">';
37 echo '<tr><td><label id="projectsHierarchy-tree" ';
39 echo 'title="'._('Enable visibily in hierarchy tree.').'"';
40 echo ' >'._('Enable tree').'</label></td><td><input type="checkbox" name="tree" value="1"';
41 if ($projectsHierarchyProjectConf['tree'])
42 echo 'checked="checked" ';
46 echo '<tr><td><label id="projectsHierarchy-delegate" ';
48 echo 'title="'._('Enable full rights and configuration delegation to parent.').'"';
49 echo ' >'._('Enable delegate').'</label></td><td><input type="checkbox" name="delegate" value="1"';
50 if ($projectsHierarchyProjectConf['delegate'])
51 echo 'checked="checked" ';
54 echo '<tr><td><label id="projectsHierarchy-globalconf" ';
56 echo 'title="'._('Use forge global configuration. Superseed any configuration done at project level.').'"';
57 echo ' >'._('Use forge global configuration').'</label></td><td><input type="checkbox" name="globalconf" value="1"';
58 if ($projectsHierarchyProjectConf['globalconf'])
59 echo 'checked="checked" ';
64 echo '<input type="submit" value="'._('Update').'" />';
66 echo $HTML->boxBottom();