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('ttTimeHelper');
32 import('ttFileHelper');
35 if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) {
36 header('Location: access_denied.php');
39 if (!$user->isPluginEnabled('at')) {
40 header('Location: feature_disabled.php');
43 $cl_id = (int)$request->getParameter('id');
44 $time_rec = ttTimeHelper::getRecordForFileView($cl_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::getEntityFiles($cl_id, 'time');
58 $form = new Form('fileUploadForm');
59 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
60 $form->addInput(array('type'=>'upload','name'=>'newfile','value'=>$i18n->get('button.submit')));
61 $form->addInput(array('type'=>'textarea','name'=>'description','style'=>'width: 250px; height: 40px;','value'=>$cl_description));
62 $form->addInput(array('type'=>'submit','name'=>'btn_submit','value'=>$i18n->get('button.add')));
64 if ($request->isPost()) {
65 // We are adding a new file.
67 // Validate user input.
68 if (!$_FILES['newfile']['name']) $err->add($i18n->get('error.upload'));
69 if (!ttValidString($cl_description, true)) $err->add($i18n->get('error.field'), $i18n->get('label.description'));
70 // Finished validating user input.
73 $fields = array('entity_type'=>'time',
74 'entity_id' => $cl_id,
75 'file_name' => $_FILES['newfile']['name'],
76 'description'=>$cl_description);
77 if ($fileHelper->putFile($fields)) {
78 header('Location: time_files.php?id='.$cl_id);
84 $smarty->assign('can_edit', $time_rec['can_edit']);
85 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
86 $smarty->assign('files', $files);
87 $smarty->assign('title', $i18n->get('title.time_files'));
88 $smarty->assign('content_page_name', 'entity_files.tpl');
89 $smarty->display('index.tpl');