<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.18.28.4514 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.18.28.4515 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
<tr>
<td valign="top">
{if $user->can('manage_projects')}
+ {if $group_dropdown}
+{$forms.projectsForm.open} {* projectsForm consists only of one dropdown group control *}
+ <table width="100%">
+ <tr>
+ <td align="center">{$i18n.label.group}: {$forms.projectsForm.group.control}</td>
+ </tr>
+ </table>
+{$forms.projectsForm.close}
+ {/if}
+
<table cellspacing="1" cellpadding="3" border="0" width="100%">
{if $inactive_projects}
<tr><td class="sectionHeaderNoBorder">{$i18n.form.projects.active_projects}</td></tr>
header('Location: feature_disabled.php');
exit();
}
+if ($request->isPost() && !$user->isGroupValid($request->getParameter('group'))) {
+ header('Location: access_denied.php'); // Wrong group id in post.
+ exit();
+}
// End of access checks.
+if ($request->isPost()) {
+ $group_id = $request->getParameter('group');
+ $user->setOnBehalfGroup($group_id);
+} else {
+ $group_id = $user->getActiveGroup();
+}
+
+$form = new Form('projectsForm');
+if ($user->can('manage_subgroups')) {
+ $groups = $user->getGroupsForDropdown();
+ if (count($groups) > 1) {
+ $form->addInput(array('type'=>'combobox',
+ 'onchange'=>'this.form.submit();',
+ 'name'=>'group',
+ 'style'=>'width: 250px;',
+ 'value'=>$group_id,
+ 'data'=>$groups,
+ 'datakeys'=>array('id','name')));
+ $smarty->assign('group_dropdown', 1);
+ }
+}
+
if($user->can('manage_projects')) {
- $active_projects = ttTeamHelper::getActiveProjects($user->group_id);
- $inactive_projects = ttTeamHelper::getInactiveProjects($user->group_id);
+ $active_projects = ttTeamHelper::getActiveProjects($group_id);
+ $inactive_projects = ttTeamHelper::getInactiveProjects($group_id);
} else
$active_projects = $user->getAssignedProjects();
+$smarty->assign('forms', array($form->getName()=>$form->toArray()));
$smarty->assign('active_projects', $active_projects);
$smarty->assign('inactive_projects', $inactive_projects);
$smarty->assign('title', $i18n->get('title.projects'));