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;
28 $projectsHierarchyGlobalConf = $projectsHierarchy->getGlobalconf();
30 echo $HTML->boxTop(_('Manage project configuration'));
31 echo '<form method="post" action="?type=admin&&pluginname='.$projectsHierarchy->name.'&action=updateProjectConf">';
34 echo '<tr><td><label id="projectsHierarchy-delegate" ';
36 echo 'title="'._('Enable full rights and configuration delegation to parent.').'"';
37 echo ' >'._('Enable delegate').'</label></td><td><input type="checkbox" name="delegate" value="1"';
38 if ($projectsHierarchyProjectConf['delegate'])
39 echo 'checked="checked" ';
42 echo '<tr><td><label id="projectsHierarchy-globalconf" ';
44 echo 'title="'._('Use forge global configuration. Superseed any configuration done at project level.').'"';
45 echo ' >'._('Use forge global configuration').'</label></td><td><input type="checkbox" name="globalconf" value="1"';
46 if ($projectsHierarchyProjectConf['globalconf'])
47 echo 'checked="checked" ';
52 echo '<input type="submit" value="'._('Update').'" />';
54 echo $HTML->boxBottom();