]> git.pld-linux.org Git - packages/eventum.git/blame - eventum-email-notify-display.patch
- route script is executable
[packages/eventum.git] / eventum-email-notify-display.patch
CommitLineData
eb90e21e
ER
1--- eventum-20060830/include/class.notification.php 2006-08-30 20:17:25.074832296 +0300
2+++ eventum/include/class.notification.php 2006-09-21 20:59:32.125474606 +0300
3ec364a0 3@@ -853,6 +853,31 @@
4819a450
ER
4 }
5 }
6
7+ /**
8+ * Method used to get list of addresses that were email sent to.
9+ *
10+ * @access public
11+ * @param integer $issue_id The issue ID
12+ * @return array list of addresse
13+ */
358f6191 14+ function getLastNotifiedAddresses($issue_id = null)
4819a450 15+ {
4f45b210 16+ global $_EVENTUM_LAST_NOTIFIED_LIST;
4819a450 17+
eb90e21e
ER
18+ if (is_null($_EVENTUM_LAST_NOTIFIED_LIST)) {
19+ return null;
20+ }
21+
4819a450
ER
22+ if (is_null($issue_id)) {
23+ // return all addresses in flat view
3ec364a0
ER
24+ $ret = array_values($_EVENTUM_LAST_NOTIFIED_LIST);
25+ } else {
26+ // return address list for specific issue_id only.
27+ $ret = $_EVENTUM_LAST_NOTIFIED_LIST[$issue_id];
4819a450 28+ }
3ec364a0 29+ return array_unique($ret);
4819a450
ER
30+ }
31+
32
33 /**
34 * Method used to format and send the email notifications.
3ec364a0 35@@ -869,6 +894,8 @@
4819a450
ER
36 */
37 function notifySubscribers($issue_id, $emails, $type, $data, $subject, $internal_only, $type_id = false, $headers = false)
38 {
4f45b210 39+ global $_EVENTUM_LAST_NOTIFIED_LIST;
4819a450
ER
40+
41 // open text template
42 $tpl = new Template_API;
43 $tpl->setTemplate('notifications/' . $type . '.tpl.text');
3ec364a0 44@@ -954,6 +981,8 @@
4819a450
ER
45 $full_subject = "[#$issue_id] $subject: $extra_subject";
46 }
47 $mail->send($from, $emails[$i], $full_subject, TRUE, $issue_id, $final_type, $sender_usr_id, $type_id);
48+
4f45b210 49+ $_EVENTUM_LAST_NOTIFIED_LIST[$issue_id][] = $emails[$i];
4819a450
ER
50 }
51 }
52
53--- eventum-20060829/update.php 2006-08-30 00:46:19.047416365 +0300
54+++ eventum-20060830/update.php 2006-08-30 20:17:24.844826982 +0300
55@@ -111,6 +111,7 @@
56
57 $tpl->assign(array(
58 "subscribers" => Notification::getSubscribers($issue_id),
358f6191 59+ "notify_list" => Notification::getLastNotifiedAddresses($issue_id),
4819a450
ER
60 "categories" => Category::getAssocList($prj_id),
61 "priorities" => Priority::getAssocList($prj_id),
62 "status" => $statuses,
251a5da4
ER
63--- eventum/templates/update_form.tpl.html~ 2006-11-19 23:13:05.931183315 +0200
64+++ eventum/templates/update_form.tpl.html 2006-11-19 23:16:07.055242625 +0200
e99b6b55 65@@ -14,8 +14,19 @@
4819a450 66 {if $has_duplicates == 'yes'}
251a5da4 67 <br />{t}Also, all issues that are marked as duplicates from this one were updated as well.{/t}
4819a450
ER
68 {/if}
69 <br /><br />
70+
71+ {if $notify_list|@count > 0}
72+ <b>{t}E-mail about issue update was sent to:{/t}</b><br />
73+ {foreach from=$notify_list item=email_address}
74+ &nbsp;&nbsp;{$email_address|escape:"html"}<br />
75+ {/foreach}
76+ <br />
77+ {/if}
78+
79+ <b>
80 <a href="view.php?id={$smarty.post.issue_id}" class="link">{t}Return to Issue{/t} #{$smarty.post.issue_id} {t}Details Page{/t}</a>
81+ </b>
82 {/if}
83 </td>
84 </tr>
15b3b275
ER
85--- eventum-20060830/close.php 2006-09-04 14:46:53.766630207 +0300
86+++ eventum-20060830/close.php 2006-09-04 13:57:56.000000000 +0300
87@@ -68,9 +68,12 @@
88 $tpl->assign("close_result", $res);
89 }
90
91-$tpl->assign("statuses", Status::getClosedAssocList($prj_id));
92-$tpl->assign("resolutions", Resolution::getAssocList());
93-$tpl->assign("time_categories", Time_Tracking::getAssocCategories());
94+$tpl->assign(array(
95+ "statuses" => Status::getClosedAssocList($prj_id),
96+ "resolutions" => Resolution::getAssocList(),
97+ "time_categories" => Time_Tracking::getAssocCategories(),
98+ "notify_list" => Notification::getLastNotifiedAddresses($issue_id),
99+));
100
101 if ((Customer::hasCustomerIntegration($prj_id)) && (Customer::hasPerIncidentContract($prj_id, Issue::getCustomerID($issue_id)))) {
102 $details = Issue::getDetails($issue_id);
103--- eventum-20060830/templates/close.tpl.html~ 2006-09-04 14:46:53.486623924 +0300
104+++ eventum-20060830/templates/close.tpl.html 2006-09-04 14:45:42.000000000 +0300
105@@ -12,7 +12,18 @@
106 {if $close_result == -1}
107 <b>{t}Sorry, an error happened while trying to run your query.{/t}</b>
108 {elseif $close_result == 1}
109- <b>{t}Thank you, the issue was closed successfully. Please choose from one of the options below:{/t}</b>
110+ <b>{t}Thank you, the issue was closed successfully.{/t}</b><br/>
111+
112+ {if $notify_list|@count > 0}
113+ <br/>
114+ <b>{t}E-mail about issue update was sent to:{/t}</b><br />
115+ {foreach from=$notify_list item=email_address}
116+ &nbsp;&nbsp;{$email_address|escape:"html"}<br />
117+ {/foreach}
118+ <br />
119+ {/if}
120+
121+ <b>{t}Please choose from one of the options below:{/t}</b>
122 <ul>
123 <li><a href="view.php?id={$smarty.post.issue_id}" class="link">{t}Open the Issue Details Page{/t}</a></li>
124 <li><a href="list.php" class="link">{t}Open the Issue Listing Page{/t}</a></li>
This page took 0.049492 seconds and 4 git commands to generate.