Merge pull request #12615 from eileenmcnaughton/amex
[civicrm-core.git] / CRM / Mailing / Page / Event.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
bf8648e1 35 * This implements the profile page for all contacts.
36 *
37 * It uses a selector object to do the actual display. The fields displayed are controlled by
6a488035
TO
38 * the admin
39 */
40class CRM_Mailing_Page_Event extends CRM_Core_Page {
41
42 /**
fe482240 43 * All the fields that are listings related.
6a488035
TO
44 *
45 * @var array
6a488035
TO
46 */
47 protected $_fields;
48
49 /**
100fef9d 50 * Run this page (figure out the action needed and perform it).
6a488035 51 */
00be9182 52 public function run() {
bf8648e1 53 $selector = new CRM_Mailing_Selector_Event(
6a488035
TO
54 CRM_Utils_Request::retrieve('event', 'String', $this),
55 CRM_Utils_Request::retrieve('distinct', 'Boolean', $this),
56 CRM_Utils_Request::retrieve('mid', 'Positive', $this),
57 CRM_Utils_Request::retrieve('jid', 'Positive', $this),
58 CRM_Utils_Request::retrieve('uid', 'Positive', $this)
59 );
60
61 $mailing_id = CRM_Utils_Request::retrieve('mid', 'Positive', $this);
62
5bcf3e57
DJ
63 // check that the user has permission to access mailing id
64 CRM_Mailing_BAO_Mailing::checkPermission($mailing_id);
65
edc80cda 66 $context = CRM_Utils_Request::retrieve('context', 'Alphanumeric', $this);
01c22255 67
5a99d240
KJ
68 if ($context == 'activitySelector') {
69 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
70 $backUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$cid}&selectedChild=activity");
71 $backUrlTitle = ts('Back to Activities');
72 }
73 elseif ($context == 'mailing') {
01c22255
KJ
74 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
75 $backUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$cid}&selectedChild=mailing");
76 $backUrlTitle = ts('Back to Mailing');
77 }
05381a97
TO
78 elseif ($context == 'angPage') {
79 $angPage = CRM_Utils_Request::retrieve('angPage', 'String', $this);
80 if (!preg_match(':^[a-zA-Z0-9\-_/]+$:', $angPage)) {
81 CRM_Core_Error::fatal('Malformed return URL');
82 }
83 $backUrl = CRM_Utils_System::url('civicrm/a/#/' . $angPage);
84 $backUrlTitle = ts('Back to Report');
85 }
01c22255 86 else {
9afae995 87 $backUrl = CRM_Utils_System::url('civicrm/mailing/report', "reset=1&mid={$mailing_id}");
01c22255
KJ
88 $backUrlTitle = ts('Back to Report');
89 }
90
91 $this->assign('backUrl', $backUrl);
92 $this->assign('backUrlTitle', $backUrlTitle);
93
6a488035
TO
94 CRM_Utils_System::setTitle($selector->getTitle());
95 $this->assign('title', $selector->getTitle());
96 $this->assign('mailing_id', $mailing_id);
97
98 $sortID = NULL;
99 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
100 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
101 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
102 );
103 }
104
105 $controller = new CRM_Core_Selector_Controller(
106 $selector,
107 $this->get(CRM_Utils_Pager::PAGE_ID),
108 $sortID,
109 CRM_Core_Action::VIEW,
110 $this,
111 CRM_Core_Selector_Controller::TEMPLATE
112 );
113
114 $controller->setEmbedded(TRUE);
115 $controller->run();
116
117 return parent::run();
118 }
96025800 119
6a488035 120}