This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
messu-sent.php
122 lines (119 loc) · 4 KB
/
messu-sent.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2016 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
$section = 'user_messages';
require_once('tiki-setup.php');
$messulib = TikiLib::lib('message');
$access->check_user($user);
$access->check_feature('feature_messages');
$access->check_permission('tiki_p_messages');
$access->checkAuthenticity();
$maxRecords = $messulib->get_user_preference($user, 'maxRecords', 20);
if ($access->ticketMatch()) {
// Delete messages if the delete button was pressed
if (isset($_REQUEST["delete"]) && isset($_REQUEST["msg"])) {
foreach (array_keys($_REQUEST["msg"]) as $msg) {
$messulib->delete_message($user, $msg, 'sent');
}
}
// Archive messages if the archive button was pressed
if (isset($_REQUEST["archive"]) && isset($_REQUEST["msg"])) {
$tmp = $messulib->count_messages($user, 'archive');
foreach (array_keys($_REQUEST["msg"]) as $msg) {
if (($prefs['messu_archive_size'] > 0) && ($tmp >= $prefs['messu_archive_size'])) {
$smarty->assign('msg', tra("Archive is full. Delete some messages from archive first."));
$smarty->display("error.tpl");
die;
}
$messulib->archive_message($user, $msg, 'sent');
$tmp++;
}
}
// Download messages if the download button was pressed
if (isset($_REQUEST["download"])) {
// if message ids are handed over, use them:
if (isset($_REQUEST["msg"])) {
foreach (array_keys($_REQUEST["msg"]) as $msg) {
$tmp = $messulib->get_message($user, $msg, 'sent');
$items[] = $tmp;
}
} else {
$items = $messulib->get_messages($user, 'sent', '', '', '');
}
$smarty->assign_by_ref('items', $items);
header("Content-Disposition: attachment; filename=tiki-msg-sent-" . time("U") . ".txt ");
$smarty->display('messu-download.tpl', null, null, null, 'application/download');
die;
}
}
if (isset($_REQUEST['filter'])) {
if ($_REQUEST['flags'] != '') {
$parts = explode('_', $_REQUEST['flags']);
$_REQUEST['flag'] = $parts[0];
$_REQUEST['flagval'] = $parts[1];
}
}
if (! isset($_REQUEST["priority"])) {
$_REQUEST["priority"] = '';
}
if (! isset($_REQUEST["flag"])) {
$_REQUEST["flag"] = '';
}
if (! isset($_REQUEST["flagval"])) {
$_REQUEST["flagval"] = '';
} else {
$_REQUEST["flagval"] = $_REQUEST["flagval"] === 'y' ? 'y' : 'n';
}
if (! isset($_REQUEST["sort_mode"])) {
$sort_mode = 'date_desc';
} else {
$sort_mode = $_REQUEST["sort_mode"];
}
if (! isset($_REQUEST["offset"])) {
$offset = 0;
} else {
$offset = $_REQUEST["offset"];
}
if (isset($_REQUEST["find"])) {
$find = $_REQUEST["find"];
} else {
$find = '';
}
$smarty->assign_by_ref('flag', $_REQUEST['flag']);
$smarty->assign_by_ref('priority', $_REQUEST['priority']);
$smarty->assign_by_ref('flagval', $_REQUEST['flagval']);
$smarty->assign_by_ref('offset', $offset);
$smarty->assign_by_ref('sort_mode', $sort_mode);
$smarty->assign('find', $find);
// What are we paginating: items
$items = $messulib->list_user_messages($user, $offset, $maxRecords, $sort_mode, $find, $_REQUEST["flag"], $_REQUEST["flagval"], $_REQUEST['priority'], 'sent');
$smarty->assign_by_ref('cant_pages', $items["cant"]);
$smarty->assign_by_ref('items', $items["data"]);
$cellsize = 200;
$percentage = 1;
if ($prefs['messu_sent_size'] > 0) {
$current_number = $messulib->count_messages($user, 'sent');
$smarty->assign('messu_sent_number', $current_number);
$smarty->assign('messu_sent_size', $prefs['messu_sent_size']);
$percentage = ($current_number / $prefs['messu_sent_size']) * 100;
$cellsize = round($percentage / 100 * 200);
if ($current_number > $prefs['messu_sent_size']) {
$cellsize = 200;
}
if ($cellsize < 1) {
$cellsize = 1;
}
$percentage = round($percentage);
}
$smarty->assign('cellsize', $cellsize);
$smarty->assign('percentage', $percentage);
include_once('tiki-section_options.php');
include_once('tiki-mytiki_shared.php');
$smarty->assign('mid', 'messu-sent.tpl');
$smarty->display("tiki.tpl");