Import from SVN (r45945, r596)
[civicrm-core.git] / CRM / Event / Page / ParticipantListing / NameStatusAndDate.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35 class CRM_Event_Page_ParticipantListing_NameStatusAndDate extends CRM_Core_Page {
36
37 protected $_id;
38
39 protected $_participantListingID;
40
41 protected $_eventTitle;
42
43 protected $_pager;
44
45 function preProcess() {
46 $this->_id = CRM_Utils_Request::retrieve('id', 'Integer', $this, TRUE);
47
48 // ensure that there is a particpant type for this
49 $this->_participantListingID = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event',
50 $this->_id,
51 'participant_listing_id'
52 );
53 if (!$this->_participantListingID) {
54 CRM_Core_Error::fatal(ts("The Participant Listing feature is not currently enabled for this event."));
55 }
56
57 // retrieve Event Title and include it in page title
58 $this->_eventTitle = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event',
59 $this->_id,
60 'title'
61 );
62 CRM_Utils_System::setTitle(ts('%1 - Participants', array(1 => $this->_eventTitle)));
63
64 // we do not want to display recently viewed contacts since this is potentially a public page
65 $this->assign('displayRecent', FALSE);
66 }
67
68 function run() {
69 $this->preProcess();
70
71 $fromClause = "
72 FROM civicrm_contact
73 INNER JOIN civicrm_participant ON civicrm_contact.id = civicrm_participant.contact_id
74 INNER JOIN civicrm_event ON civicrm_participant.event_id = civicrm_event.id
75 ";
76
77 $whereClause = "
78 WHERE civicrm_event.id = %1";
79
80 $params = array(1 => array($this->_id, 'Integer'));
81 $this->pager($fromClause, $whereClause, $params);
82 $orderBy = $this->orderBy();
83
84 list($offset, $rowCount) = $this->_pager->getOffsetAndRowCount();
85
86 $query = "
87 SELECT civicrm_contact.id as contact_id ,
88 civicrm_contact.display_name as name ,
89 civicrm_contact.sort_name as sort_name ,
90 civicrm_participant.id as participant_id,
91 civicrm_participant.status_id as status_id ,
92 civicrm_participant.register_date as register_date
93 $fromClause
94 $whereClause
95 ORDER BY $orderBy
96 LIMIT $offset, $rowCount";
97
98 $rows = array();
99 $object = CRM_Core_DAO::executeQuery($query, $params);
100 $statusLookup = CRM_Event_PseudoConstant::participantStatus();
101 while ($object->fetch()) {
102 $row = array(
103 'id' => $object->contact_id,
104 'participantID' => $object->participant_id,
105 'name' => $object->name,
106 'email' => $object->email,
107 'status' => CRM_Utils_Array::value($object->status_id,
108 $statusLookup
109 ),
110 'date' => $object->register_date,
111 );
112 $rows[] = $row;
113 }
114 $this->assign_by_ref('rows', $rows);
115
116 return parent::run();
117 }
118
119 function pager($fromClause, $whereClause, $whereParams) {
120
121 $params = array();
122
123 $params['status'] = ts('Group') . ' %%StatusMessage%%';
124 $params['csvString'] = NULL;
125 $params['buttonTop'] = 'PagerTopButton';
126 $params['buttonBottom'] = 'PagerBottomButton';
127 $params['rowCount'] = $this->get(CRM_Utils_Pager::PAGE_ROWCOUNT);
128 if (!$params['rowCount']) {
129 $params['rowCount'] = CRM_Utils_Pager::ROWCOUNT;
130 }
131
132 $query = "
133 SELECT count( civicrm_contact.id )
134 $fromClause
135 $whereClause";
136
137 $params['total'] = CRM_Core_DAO::singleValueQuery($query, $whereParams);
138 $this->_pager = new CRM_Utils_Pager($params);
139 $this->assign_by_ref('pager', $this->_pager);
140 }
141
142 function orderBy() {
143 static $headers = NULL;
144 if (!$headers) {
145 $headers = array();
146 $headers[1] = array('name' => ts('Name'),
147 'sort' => 'civicrm_contact.sort_name',
148 'direction' => CRM_Utils_Sort::ASCENDING,
149 );
150 $headers[2] = array('name' => ts('Status'),
151 'sort' => 'civicrm_participant.status_id',
152 'direction' => CRM_Utils_Sort::DONTCARE,
153 );
154 $headers[3] = array('name' => ts('Register Date'),
155 'sort' => 'civicrm_participant.register_date',
156 'direction' => CRM_Utils_Sort::DONTCARE,
157 );
158 }
159 $sortID = NULL;
160 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
161 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
162 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
163 );
164 }
165 $sort = new CRM_Utils_Sort($headers, $sortID);
166 $this->assign_by_ref('headers', $headers);
167 $this->assign_by_ref('sort', $sort);
168 $this->set(CRM_Utils_Sort::SORT_ID,
169 $sort->getCurrentSortID()
170 );
171 $this->set(CRM_Utils_Sort::SORT_DIRECTION,
172 $sort->getCurrentSortDirection()
173 );
174
175 return $sort->orderBy();
176 }
177 }
178