3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This class is used to retrieve and display a range of
38 * contacts that match the given criteria (specifically for
39 * results of advanced search options.
42 class CRM_Mailing_Selector_Event
extends CRM_Core_Selector_Base
implements CRM_Core_Selector_API
{
45 * array of supported links, currenly null
50 static $_links = NULL;
53 * what event type are we browsing?
58 * should we only count distinct contacts?
60 private $_is_distinct;
63 * which mailing are we browsing events from?
68 * do we want events tied to a specific job?
73 * for click-through events, do we only want those from a specific url?
78 * we use desc to remind us what that column is, name is used in the tpl
82 public $_columnHeaders;
87 * @param string $event The event type (queue/delivered/open...)
88 * @param boolean $distinct Count only distinct contact events?
89 * @param int $mailing ID of the mailing to query
90 * @param int $job ID of the job to query. If null, all jobs from $mailing are queried.
91 * @param int $url If the event type is a click-through, do we want only those from a specific url?
93 * @return \CRM_Mailing_Selector_Event
96 function __construct($event, $distinct, $mailing, $job = NULL, $url = NULL) {
97 $this->_event_type
= $event;
98 $this->_is_distinct
= $distinct;
99 $this->_mailing_id
= $mailing;
100 $this->_job_id
= $job;
101 $this->_url_id
= $url;
106 * This method returns the links that are given for each search row.
112 static function &links() {
113 return self
::$_links;
118 * getter for array of the parameters required for creating pager.
126 function getPagerParams($action, &$params) {
127 $params['csvString'] = NULL;
128 $params['rowCount'] = CRM_Utils_Pager
::ROWCOUNT
;
129 $params['status'] = ts('%1 %%StatusMessage%%', array(1 => $this->eventToTitle()));
130 $params['buttonTop'] = 'PagerTopButton';
131 $params['buttonBottom'] = 'PagerBottomButton';
136 * returns the column headers as an array of tuples:
137 * (name, sortName (key to the sort array))
139 * @param string $action the action being performed
140 * @param enum $output what should the result set include (web/email/csv)
142 * @return array the column headers that need to be displayed
145 function &getColumnHeaders($action = NULL, $output = NULL) {
146 $mailing = CRM_Mailing_BAO_Mailing
::getTableName();
148 $contact = CRM_Contact_BAO_Contact
::getTableName();
150 $email = CRM_Core_BAO_Email
::getTableName();
152 $job = CRM_Mailing_BAO_MailingJob
::getTableName();
153 if (!isset($this->_columnHeaders
)) {
155 $this->_columnHeaders
= array(
157 'name' => ts('Contact'),
158 'sort' => $contact . '.sort_name',
159 'direction' => CRM_Utils_Sort
::ASCENDING
,
162 'name' => ts('Email Address'),
163 'sort' => $email . '.email',
164 'direction' => CRM_Utils_Sort
::DONTCARE
,
168 switch ($this->_event_type
) {
170 $dateSort = $job . '.start_date';
174 $dateSort = CRM_Mailing_Event_BAO_Delivered
::getTableName() . '.time_stamp';
178 $dateSort = CRM_Mailing_Event_BAO_Opened
::getTableName() . '.time_stamp';
182 $dateSort = CRM_Mailing_Event_BAO_Bounce
::getTableName() . '.time_stamp';
183 $this->_columnHeaders
= array_merge($this->_columnHeaders
,
186 'name' => ts('Bounce Type'),
189 'name' => ts('Bounce Reason'),
196 $dateSort = CRM_Mailing_Event_BAO_Forward
::getTableName() . '.time_stamp';
198 $this->_columnHeaders
= array_merge($this->_columnHeaders
,
201 'name' => ts('Forwarded Email'),
208 $dateSort = CRM_Mailing_Event_BAO_Reply
::getTableName() . '.time_stamp';
212 $dateSort = CRM_Mailing_Event_BAO_Unsubscribe
::getTableName() . '.time_stamp';
213 $this->_columnHeaders
= array_merge($this->_columnHeaders
, array(
215 'name' => ts('Unsubscribe'),
221 $dateSort = CRM_Mailing_Event_BAO_Unsubscribe
::getTableName() . '.time_stamp';
222 $this->_columnHeaders
= array_merge($this->_columnHeaders
, array(
224 'name' => ts('Opt-Out'),
230 $dateSort = CRM_Mailing_Event_BAO_TrackableURLOpen
::getTableName() . '.time_stamp';
231 $this->_columnHeaders
= array_merge($this->_columnHeaders
, array(
242 $this->_columnHeaders
= array_merge($this->_columnHeaders
,
245 'name' => ts('Date'),
247 'direction' => CRM_Utils_Sort
::DESCENDING
,
252 return $this->_columnHeaders
;
256 * Returns total number of rows for the query.
260 * @return int Total number of rows
263 function getTotalCount($action) {
264 switch ($this->_event_type
) {
266 $event = new CRM_Mailing_Event_BAO_Queue();
267 return $event->getTotalCount($this->_mailing_id
,
273 $event = new CRM_Mailing_Event_BAO_Delivered();
274 return $event->getTotalCount($this->_mailing_id
,
281 $event = new CRM_Mailing_Event_BAO_Opened();
282 return $event->getTotalCount($this->_mailing_id
,
289 $event = new CRM_Mailing_Event_BAO_Bounce();
290 return $event->getTotalCount($this->_mailing_id
,
297 $event = new CRM_Mailing_Event_BAO_Forward();
298 return $event->getTotalCount($this->_mailing_id
,
305 $event = new CRM_Mailing_Event_BAO_Reply();
306 return $event->getTotalCount($this->_mailing_id
,
313 $event = new CRM_Mailing_Event_BAO_Unsubscribe();
314 return $event->getTotalCount($this->_mailing_id
,
321 $event = new CRM_Mailing_Event_BAO_Unsubscribe();
322 return $event->getTotalCount($this->_mailing_id
,
330 $event = new CRM_Mailing_Event_BAO_TrackableURLOpen();
331 return $event->getTotalCount($this->_mailing_id
,
344 * returns all the rows in the given offset and rowCount
346 * @param enum $action the action being performed
347 * @param int $offset the row number to start from
348 * @param int $rowCount the number of rows to return
349 * @param string $sort the sql string that describes the sort order
350 * @param enum $output what should the result set include (web/email/csv)
352 * @return int the total number of rows for this action
354 function &getRows($action, $offset, $rowCount, $sort, $output = NULL) {
355 switch ($this->_event_type
) {
357 return CRM_Mailing_Event_BAO_Queue
::getRows($this->_mailing_id
,
358 $this->_job_id
, $offset, $rowCount, $sort
363 return CRM_Mailing_Event_BAO_Delivered
::getRows($this->_mailing_id
,
364 $this->_job_id
, $this->_is_distinct
,
365 $offset, $rowCount, $sort
370 return CRM_Mailing_Event_BAO_Opened
::getRows($this->_mailing_id
,
371 $this->_job_id
, $this->_is_distinct
,
372 $offset, $rowCount, $sort
377 return CRM_Mailing_Event_BAO_Bounce
::getRows($this->_mailing_id
,
378 $this->_job_id
, $this->_is_distinct
,
379 $offset, $rowCount, $sort
384 return CRM_Mailing_Event_BAO_Forward
::getRows($this->_mailing_id
,
385 $this->_job_id
, $this->_is_distinct
,
386 $offset, $rowCount, $sort
390 return CRM_Mailing_Event_BAO_Reply
::getRows($this->_mailing_id
,
391 $this->_job_id
, $this->_is_distinct
,
392 $offset, $rowCount, $sort
397 return CRM_Mailing_Event_BAO_Unsubscribe
::getRows($this->_mailing_id
,
398 $this->_job_id
, $this->_is_distinct
,
399 $offset, $rowCount, $sort, TRUE
404 return CRM_Mailing_Event_BAO_Unsubscribe
::getRows($this->_mailing_id
,
405 $this->_job_id
, $this->_is_distinct
,
406 $offset, $rowCount, $sort, FALSE
411 return CRM_Mailing_Event_BAO_TrackableURLOpen
::getRows(
412 $this->_mailing_id
, $this->_job_id
,
413 $this->_is_distinct
, $this->_url_id
,
414 $offset, $rowCount, $sort
424 * name of export file.
426 * @param string $output type of output
428 * @return string name of the file
430 function getExportFileName($output = 'csv') {}
432 function eventToTitle() {
433 static $events = NULL;
435 if (empty($events)) {
437 'queue' => ts('Intended Recipients'),
438 'delivered' => ts('Successful Deliveries'),
439 'bounce' => ts('Bounces'),
440 'forward' => ts('Forwards'),
441 'reply' => $this->_is_distinct
442 ?
ts('Unique Replies')
444 'unsubscribe' => ts('Unsubscribe Requests'),
445 'optout' => ts('Opt-out Requests'),
446 'click' => $this->_is_distinct
447 ?
ts('Unique Click-throughs')
448 : ts('Click-throughs'),
449 'opened' => $this->_is_distinct
450 ?
ts('Unique Tracked Opens')
451 : ts('Tracked Opens'),
454 return $events[$this->_event_type
];
457 function getTitle() {
458 return $this->eventToTitle();