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('ttFileHelper');
 
  35 if (!(ttAccessAllowed('view_own_projects') || 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 if ($request->isPost()) {
 
  52   $cl_description = trim($request->getParameter('description'));
 
  55 $fileHelper = new ttFileHelper($err);
 
  56 $files = $fileHelper::getProjectFiles($cl_project_id);
 
  58 $form = new Form('fileUploadForm');
 
  59 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_project_id));
 
  60 $form->addInput(array('type'=>'upload','name'=>'newfile','value'=>$i18n->get('button.submit'),'maxsize'=>67108864)); // 64 MB file upload limit.
 
  61 // Note: for the above limit to work make sure to set upload_max_filesize and post_max_size in php.ini to at least 64M.
 
  62 $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description));
 
  63 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.add')));
 
  65 if ($request->isPost()) {
 
  66   // We are adding a new file.
 
  68   // Validate user input.
 
  69   if (!$_FILES['newfile']['name']) $err->add($i18n->get('error.upload'));
 
  70   if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description'));
 
  71   // Finished validating user input.
 
  74     $fields = array('entity_type'=>'project',
 
  75       'entity_id' => $cl_project_id,
 
  76       'file_name' => $_FILES['newfile']['name'],
 
  77       'description'=>$cl_description);
 
  78     if ($fileHelper->putFile($fields)) {
 
  79       header('Location: project_files.php?id='.$cl_project_id);
 
  85 $smarty->assign('can_manage', $user->can('manage_projects'));
 
  86 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 
  87 $smarty->assign('files', $files);
 
  88 $smarty->assign('title', $i18n->get('title.project_files'));
 
  89 $smarty->assign('content_page_name', 'project_files.tpl');
 
  90 $smarty->display('index.tpl');