Merge pull request #3207 from totten/master-alerts
[civicrm-core.git] / CRM / Utils / Recent.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 4.5 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2014 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 /**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2014
33 * $Id$
34 *
35 */
36
37 /**
38 *
39 */
40 class CRM_Utils_Recent {
41
42 /**
43 * max number of items in queue
44 *
45 * @int
46 */
47 CONST MAX_ITEMS = 10, STORE_NAME = 'CRM_Utils_Recent';
48
49 /**
50 * The list of recently viewed items
51 *
52 * @var array
53 * @static
54 */
55 static private $_recent = NULL;
56
57 /**
58 * initialize this class and set the static variables
59 *
60 * @return void
61 * @access public
62 * @static
63 */
64 static function initialize() {
65 if (!self::$_recent) {
66 $session = CRM_Core_Session::singleton();
67 self::$_recent = $session->get(self::STORE_NAME);
68 if (!self::$_recent) {
69 self::$_recent = array();
70 }
71 }
72 }
73
74 /**
75 * return the recently viewed array
76 *
77 * @return array the recently viewed array
78 * @access public
79 * @static
80 */
81 static function &get() {
82 self::initialize();
83 return self::$_recent;
84 }
85
86 /**
87 * add an item to the recent stack
88 *
89 * @param string $title the title to display
90 * @param string $url the link for the above title
91 * @param string $id object id
92 *
93 * @param $type
94 * @param $contactId
95 * @param $contactName
96 * @param array $others
97 *
98 * @internal param string $icon a link to a graphical image
99 * @return void
100 * @access public
101 * @static
102 */
103 static function add($title,
104 $url,
105 $id,
106 $type,
107 $contactId,
108 $contactName,
109 $others = array()
110 ) {
111 self::initialize();
112 $session = CRM_Core_Session::singleton();
113
114 // make sure item is not already present in list
115 for ($i = 0; $i < count(self::$_recent); $i++) {
116 if (self::$_recent[$i]['url'] == $url) {
117 // delete item from array
118 array_splice(self::$_recent, $i, 1);
119 break;
120 }
121 }
122
123 if (!is_array($others)) {
124 $others = array();
125 }
126
127 array_unshift(self::$_recent,
128 array(
129 'title' => $title,
130 'url' => $url,
131 'id' => $id,
132 'type' => $type,
133 'contact_id' => $contactId,
134 'contactName' => $contactName,
135 'subtype' => CRM_Utils_Array::value('subtype', $others),
136 'isDeleted' => CRM_Utils_Array::value('isDeleted', $others, FALSE),
137 'image_url' => CRM_Utils_Array::value('imageUrl', $others),
138 'edit_url' => CRM_Utils_Array::value('editUrl', $others),
139 'delete_url' => CRM_Utils_Array::value('deleteUrl', $others),
140 )
141 );
142 if (count(self::$_recent) > self::MAX_ITEMS) {
143 array_pop(self::$_recent);
144 }
145
146 CRM_Utils_Hook::recent(self::$_recent);
147
148 $session->set(self::STORE_NAME, self::$_recent);
149 }
150
151 /**
152 * delete an item from the recent stack
153 *
154 * @param array $recentItem array of the recent Item to be removed
155 *
156 * @return void
157 * @access public
158 * @static
159 */
160 static function del($recentItem) {
161 self::initialize();
162 $tempRecent = self::$_recent;
163
164 self::$_recent = '';
165
166 // make sure item is not already present in list
167 for ($i = 0; $i < count($tempRecent); $i++) {
168 if (!($tempRecent[$i]['id'] == $recentItem['id'] &&
169 $tempRecent[$i]['type'] == $recentItem['type']
170 )) {
171 self::$_recent[] = $tempRecent[$i];
172 }
173 }
174
175 $session = CRM_Core_Session::singleton();
176 $session->set(self::STORE_NAME, self::$_recent);
177 }
178
179 /**
180 * delete an item from the recent stack
181 *
182 * @param string $id contact id that had to be removed
183 *
184 * @return void
185 * @access public
186 * @static
187 */
188 static function delContact($id) {
189 self::initialize();
190
191 $tempRecent = self::$_recent;
192
193 self::$_recent = '';
194
195 // rebuild recent.
196 for ($i = 0; $i < count($tempRecent); $i++) {
197 // don't include deleted contact in recent.
198 if (CRM_Utils_Array::value('contact_id', $tempRecent[$i]) == $id) {
199 continue;
200 }
201 self::$_recent[] = $tempRecent[$i];
202 }
203
204 $session = CRM_Core_Session::singleton();
205 $session->set(self::STORE_NAME, self::$_recent);
206 }
207 }
208