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('ttTeamHelper');
 
  32 import('ttTaskHelper');
 
  35 if (!ttAccessAllowed('manage_tasks') || MODE_PROJECTS_AND_TASKS != $user->tracking_mode) {
 
  36   header('Location: access_denied.php');
 
  40 $cl_task_id = (int)$request->getParameter('id');
 
  41 $projects = ttTeamHelper::getActiveProjects($user->team_id);
 
  43 if ($request->isPost()) {
 
  44   $cl_name = trim($request->getParameter('name'));
 
  45   $cl_description = trim($request->getParameter('description'));
 
  46   $cl_status = $request->getParameter('status');
 
  47   $cl_projects = $request->getParameter('projects');
 
  49   $task = ttTaskHelper::get($cl_task_id);
 
  50   $cl_name = $task['name'];
 
  51   $cl_description = $task['description'];
 
  52   $cl_status = $task['status'];
 
  54   $assigned_projects = ttTaskHelper::getAssignedProjects($cl_task_id);
 
  55   foreach ($assigned_projects as $project_item)
 
  56     $cl_projects[] = $project_item['id'];
 
  59 $form = new Form('taskForm');
 
  60 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_task_id));
 
  61 $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>$cl_name));
 
  62 $form->addInput(array('type'=>'textarea','name'=>'description','class'=>'mobile-textarea','value'=>$cl_description));
 
  63 $form->addInput(array('type'=>'combobox','name'=>'status','value'=>$cl_status,
 
  64   'data'=>array(ACTIVE=>$i18n->getKey('dropdown.status_active'),INACTIVE=>$i18n->getKey('dropdown.status_inactive'))));
 
  65 $form->addInput(array('type'=>'checkboxgroup','name'=>'projects','layout'=>'H','data'=>$projects,'datakeys'=>array('id','name'),'value'=>$cl_projects));
 
  66 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey('button.save')));
 
  67 $form->addInput(array('type'=>'submit','name'=>'btn_copy','value'=>$i18n->getKey('button.copy')));
 
  68 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->getKey('label.delete')));
 
  71 if ($request->isPost()) {
 
  72   // Validate user input.
 
  73   if (!ttValidString($cl_name)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name'));
 
  74   if (!ttValidString($cl_description, true)) $err->add($i18n->getKey('error.field'), $i18n->getKey('label.description'));
 
  77     if ($request->getParameter('btn_save')) {
 
  78       $existing_task = ttTaskHelper::getTaskByName($cl_name);
 
  79       if (!$existing_task || ($cl_task_id == $existing_task['id'])) {
 
  80         // Update task information.
 
  81         if (ttTaskHelper::update(array(
 
  82           'task_id' => $cl_task_id,
 
  84           'description' => $cl_description,
 
  85           'status' => $cl_status,
 
  86           'projects' => $cl_projects))) {
 
  87           header('Location: tasks.php');
 
  90           $err->add($i18n->getKey('error.db'));
 
  92         $err->add($i18n->getKey('error.task_exists'));
 
  95     if ($request->getParameter('btn_copy')) {
 
  96       if (!ttTaskHelper::getTaskByName($cl_name)) {
 
  97         if (ttTaskHelper::insert(array(
 
  98           'team_id' => $user->team_id,
 
 100           'description' => $cl_description,
 
 101           'status' => $cl_status,
 
 102           'projects' => $cl_projects))) {
 
 103           header('Location: tasks.php');
 
 106           $err->add($i18n->getKey('error.db'));
 
 108         $err->add($i18n->getKey('error.task_exists'));
 
 111     if ($request->getParameter('btn_delete')) {
 
 112       header("Location: task_delete.php?id=$cl_task_id");
 
 118 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 
 119 $smarty->assign('title', $i18n->getKey('title.edit_task'));
 
 120 $smarty->assign('content_page_name', 'mobile/task_edit.tpl');
 
 121 $smarty->display('mobile/index.tpl');