2 // +----------------------------------------------------------------------+
 
   3 // | Anuko Time Tracker
 
   4 // +----------------------------------------------------------------------+
 
   5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
 
   6 // +----------------------------------------------------------------------+
 
   7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
 
   8 // | by anyone for any purpose, and freely redistributed alone or in
 
   9 // | combination with other software, provided that the license is obeyed.
 
  11 // | There are only two ways to violate the license:
 
  13 // | 1. To redistribute this code in source form, with the copyright
 
  14 // |    notice or license removed or altered. (Distributing in compiled
 
  15 // |    forms without embedded copyright notices is permitted).
 
  17 // | 2. To redistribute modified versions of this code in *any* form
 
  18 // |    that bears insufficient indications that the modifications are
 
  19 // |    not the work of the original author(s).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 require_once('initialize.php');
 
  31 import('ttProjectHelper');
 
  32 import('ttGroupHelper');
 
  35 if (!ttAccessAllowed('manage_projects')) {
 
  36   header('Location: access_denied.php');
 
  39 if (MODE_PROJECTS != $user->getTrackingMode() && MODE_PROJECTS_AND_TASKS != $user->getTrackingMode()) {
 
  40   header('Location: feature_disabled.php');
 
  43 $cl_project_id = (int)$request->getParameter('id');
 
  44 $project = ttProjectHelper::get($cl_project_id);
 
  46   header('Location: access_denied.php');
 
  49 // End of access checks.
 
  51 $users = ttGroupHelper::getActiveUsers();
 
  52 foreach ($users as $user_item)
 
  53   $all_users[$user_item['id']] = $user_item['name'];
 
  55 $tasks = ttGroupHelper::getActiveTasks();
 
  56 foreach ($tasks as $task_item)
 
  57   $all_tasks[$task_item['id']] = $task_item['name'];
 
  58 $show_tasks = MODE_PROJECTS_AND_TASKS == $user->getTrackingMode() && count($tasks) > 0;
 
  60 if ($request->isPost()) {
 
  61   $cl_name = trim($request->getParameter('project_name'));
 
  62   $cl_description = trim($request->getParameter('description'));
 
  63   $cl_status = $request->getParameter('status');
 
  64   $cl_users = $request->getParameter('users', array());
 
  65   $cl_tasks = $request->getParameter('tasks', array());
 
  67   $cl_name = $project['name'];
 
  68   $cl_description = $project['description'];
 
  69   $cl_status = $project['status'];
 
  70   $cl_users = ttProjectHelper::getAssignedUsers($cl_project_id);
 
  71   $cl_tasks = explode(',', $project['tasks']);
 
  74 $form = new Form('projectForm');
 
  75 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_project_id));
 
  76 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'project_name','style'=>'width: 250px;','value'=>$cl_name));
 
  77 $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description));
 
  78 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
 
  79   'data'=>array(ACTIVE=>$i18n->get('dropdown.status_active'),INACTIVE=>$i18n->get('dropdown.status_inactive'))));
 
  80 $form->addInput(array('type'=>'checkboxgroup','name'=>'users','data'=>$all_users,'layout'=>'H','value'=>$cl_users));
 
  82   $form->addInput(array('type'=>'checkboxgroup','name'=>'tasks','data'=>$all_tasks,'layout'=>'H','value'=>$cl_tasks));
 
  83 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
 
  84 $form->addInput(array('type'=>'submit','name'=>'btn_copy','value'=>$i18n->get('button.copy')));
 
  86 if ($request->isPost()) {
 
  87   // Validate user input.
 
  88   if (!ttValidString($cl_name)) $err->add($i18n->get('error.field'), $i18n->get('label.thing_name'));
 
  89   if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description'));
 
  90   if (!ttGroupHelper::validateCheckboxGroupInput($cl_users, 'tt_users')) $err->add($i18n->get('error.field'), $i18n->get('label.users'));
 
  91   if (!ttGroupHelper::validateCheckboxGroupInput($cl_tasks, 'tt_tasks')) $err->add($i18n->get('error.field'), $i18n->get('label.tasks'));
 
  94     if ($request->getParameter('btn_save')) {
 
  95       $existing_project = ttProjectHelper::getProjectByName($cl_name);
 
  96       if (!$existing_project || ($cl_project_id == $existing_project['id'])) {
 
  97         // Update project information.
 
  98         if (ttProjectHelper::update(array(
 
  99           'id' => $cl_project_id,
 
 101           'description' => $cl_description,
 
 102           'status' => $cl_status,
 
 103           'users' => $cl_users,
 
 104           'tasks' => $cl_tasks))) {
 
 105           header('Location: projects.php');
 
 108           $err->add($i18n->get('error.db'));
 
 110         $err->add($i18n->get('error.object_exists'));
 
 113     if ($request->getParameter('btn_copy')) {
 
 114       if (!ttProjectHelper::getProjectByName($cl_name)) {
 
 115         if (ttProjectHelper::insert(array('name' => $cl_name,
 
 116           'description' => $cl_description,
 
 117           'users' => $cl_users,
 
 118           'tasks' => $cl_tasks,
 
 119           'status' => ACTIVE))) {
 
 120           header('Location: projects.php');
 
 123           $err->add($i18n->get('error.db'));
 
 125         $err->add($i18n->get('error.object_exists'));
 
 130 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 
 131 $smarty->assign('onload', 'onLoad="document.projectForm.project_name.focus()"');
 
 132 $smarty->assign('show_users', count($users) > 0);
 
 133 $smarty->assign('show_tasks', $show_tasks);
 
 134 $smarty->assign('title', $i18n->get('title.edit_project'));
 
 135 $smarty->assign('content_page_name', 'project_edit.tpl');
 
 136 $smarty->display('index.tpl');