posaune
[timetracker.git] / time_files.php
1 <?php
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.
10 // |
11 // | There are only two ways to violate the license:
12 // |
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).
16 // |
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).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('initialize.php');
30 import('form.Form');
31 import('ttTimeHelper');
32 import('ttFileHelper');
33
34 // Access checks.
35 if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) {
36   header('Location: access_denied.php');
37   exit();
38 }
39 if (!$user->isPluginEnabled('at')) {
40   header('Location: feature_disabled.php');
41   exit();
42 }
43 $cl_id = (int)$request->getParameter('id');
44 $time_rec = ttTimeHelper::getRecordForFileView($cl_id);
45 if (!$time_rec) {
46   header('Location: access_denied.php');
47   exit();
48 }
49 // End of access checks.
50
51 if ($request->isPost()) {
52   $cl_description = trim($request->getParameter('description'));
53 }
54
55 $fileHelper = new ttFileHelper($err);
56 $files = $fileHelper::getEntityFiles($cl_id, 'time');
57
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')));
63
64 if ($request->isPost()) {
65   // We are adding a new file.
66
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.
71
72   if ($err->no()) {
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);
79       exit();
80     }
81   }
82 } // isPost
83
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');