<td class="tableHeader">{$i18n.label.thing_name}</td>
<td class="tableHeader">{$i18n.label.description}</td>
{if $show_files}
- <td class="tableHeader">{$i18n.label.files}</td>
+ <td></td>
{/if}
</tr>
{if $active_projects}
<td>{$project.name|escape}</td>
<td>{$project.description|escape}</td>
{if $show_files}
- <td><a href="project_files.php?id={$project.id}">{$i18n.label.view}</a></td>
+ <td><a href="project_files.php?id={$project.id}"><img class="table_icon" alt="{$i18n.label.files}" src="images/icon_files.png"></a></td>
{/if}
</tr>
{/foreach}
require_once('initialize.php');
import('form.Form');
import('ttFileHelper');
+import('ttTimeHelper');
import('ttProjectHelper');
// Access checks.
exit();
}
// Entity-specific checks.
-if ($file['entity_type'] == 'project') {
+$entity_type = $file['entity_type'];
+if ($entity_type == 'time') {
+ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time')) || !ttTimeHelper::getRecord($file['entity_id'])) {
+ header('Location: access_denied.php');
+ exit();
+ }
+}
+if ($entity_type == 'project') {
if (!ttAccessAllowed('manage_projects') || !ttProjectHelper::get($file['entity_id'])) {
header('Location: access_denied.php');
exit();
}
}
-if ($file['entity_type'] != 'project') {
- // Currently, files are only associated with projects.
+if ($entity_type != 'project' && $entity_type != 'time') {
+ // Currently, files are only associated with time records and projects.
// Improve access checks when the feature evolves.
header('Location: access_denied.php');
exit();
if ($request->getParameter('btn_delete')) {
$fileHelper = new ttFileHelper($err);
$deleted = $fileHelper->deleteFile($file);
- if ($deleted && $file['entity_type'] == 'project') {
- header('Location: project_files.php?id='.$file['entity_id']);
+ if ($deleted) {
+ if ($entity_type == 'time') {
+ header('Location: time_files.php?id='.$file['entity_id']);
+ }
+ if ($entity_type == 'project') {
+ header('Location: project_files.php?id='.$file['entity_id']);
+ }
exit();
}
} elseif ($request->getParameter('btn_cancel')) {
- if ($file['entity_type'] == 'project') {
+ if ($entity_type == 'time') {
+ header('Location: time_files.php?id='.$file['entity_id']);
+ }
+ if ($entity_type == 'project') {
header('Location: project_files.php?id='.$file['entity_id']);
}
exit();
exit();
}
// Entity-specific checks.
-if ($file['entity_type'] == 'project') {
- if (!ttAccessAllowed('manage_projects') || !ttProjectHelper::get($file['entity_id'])) {
+$entity_type = $file['entity_type'];
+if ($entity_type == 'time') {
+ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time')) || !ttTimeHelper::getRecord($file['entity_id'])) {
header('Location: access_denied.php');
exit();
}
}
-if ($file['entity_type'] != 'project') {
- // Currently, files are only associated with projects.
+if ($entity_type == 'project') {
+ if (!(ttAccessAllowed('view_own_projects') || ttAccessAllowed('manage_projects')) || !ttProjectHelper::get($file['entity_id'])) {
+ header('Location: access_denied.php');
+ exit();
+ }
+}
+if ($entity_type != 'project' && $entity_type != 'time') {
+ // Currently, files are only associated with time records and projects.
// Improve access checks when the feature evolves.
header('Location: access_denied.php');
exit();
require_once('initialize.php');
import('form.Form');
import('ttFileHelper');
+import('ttTimeHelper');
import('ttProjectHelper');
// Access checks.
exit();
}
// Entity-specific checks.
-if ($file['entity_type'] == 'project') {
+$entity_type = $file['entity_type'];
+if ($entity_type == 'time') {
+ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time')) || !ttTimeHelper::getRecord($file['entity_id'])) {
+ header('Location: access_denied.php');
+ exit();
+ }
+}
+if ($entity_type == 'project') {
if (!ttAccessAllowed('manage_projects') || !ttProjectHelper::get($file['entity_id'])) {
header('Location: access_denied.php');
exit();
}
}
-if ($file['entity_type'] != 'project') {
- // Currently, files are only associated with projects.
+if ($entity_type != 'project' && $entity_type != 'time') {
+ // Currently, files are only associated with time records and projects.
// Improve access checks when the feature evolves.
header('Location: access_denied.php');
exit();
if ($request->getParameter('btn_save')) {
// Update file information.
$updated = ttFileHelper::update(array('id' => $cl_file_id,'description' => $cl_description));
- if ($updated && $file['entity_type'] == 'project') {
- header('Location: project_files.php?id='.$file['entity_id']);
+ if ($updated) {
+ if ($entity_type == 'time') {
+ header('Location: time_files.php?id='.$file['entity_id']);
+ }
+ if ($entity_type == 'project') {
+ header('Location: project_files.php?id='.$file['entity_id']);
+ }
exit();
} else
$err->add($i18n->get('error.db'));
$smarty->assign('week_total', $week_total);
$smarty->assign('day_total', ttTimeHelper::getTimeForDay($cl_date));
$smarty->assign('time_records', ttTimeHelper::getRecords($user_id, $cl_date));
-if (isTrue('FILES_DEBUG')) $smarty->assign('show_files', $user->isPluginEnabled('at'));
+$smarty->assign('show_files', $user->isPluginEnabled('at'));
$smarty->assign('client_list', $client_list);
$smarty->assign('project_list', $project_list);
$smarty->assign('task_list', $task_list);