Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-07-07-15-48-59
[civicrm-core.git] / CRM / Mailing / Page / Event.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 * This implements the profile page for all contacts. It uses a selector
39 * object to do the actual dispay. The fields displayd are controlled by
40 * the admin
41 */
42 class CRM_Mailing_Page_Event extends CRM_Core_Page {
43
44 /**
45 * all the fields that are listings related
46 *
47 * @var array
48 * @access protected
49 */
50 protected $_fields;
51
52 /**
53 * run this page (figure out the action needed and perform it).
54 *
55 * @return void
56 */
57 function run() {
58 $selector = &new CRM_Mailing_Selector_Event(
59 CRM_Utils_Request::retrieve('event', 'String', $this),
60 CRM_Utils_Request::retrieve('distinct', 'Boolean', $this),
61 CRM_Utils_Request::retrieve('mid', 'Positive', $this),
62 CRM_Utils_Request::retrieve('jid', 'Positive', $this),
63 CRM_Utils_Request::retrieve('uid', 'Positive', $this)
64 );
65
66 $mailing_id = CRM_Utils_Request::retrieve('mid', 'Positive', $this);
67
68 //assign backurl
69 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
70
71 if ($context == 'activitySelector') {
72 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
73 $backUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$cid}&selectedChild=activity");
74 $backUrlTitle = ts('Back to Activities');
75 }
76 elseif ($context == 'mailing') {
77 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
78 $backUrl = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$cid}&selectedChild=mailing");
79 $backUrlTitle = ts('Back to Mailing');
80 }
81 else {
82 $backUrl = CRM_Utils_System::url('civicrm/mailing/report', "reset=1&mid={$mailing_id}");
83 $backUrlTitle = ts('Back to Report');
84 }
85
86 $this->assign('backUrl', $backUrl);
87 $this->assign('backUrlTitle', $backUrlTitle);
88
89 CRM_Utils_System::setTitle($selector->getTitle());
90 $this->assign('title', $selector->getTitle());
91 $this->assign('mailing_id', $mailing_id);
92
93 $sortID = NULL;
94 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
95 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
96 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
97 );
98 }
99
100 $controller = new CRM_Core_Selector_Controller(
101 $selector,
102 $this->get(CRM_Utils_Pager::PAGE_ID),
103 $sortID,
104 CRM_Core_Action::VIEW,
105 $this,
106 CRM_Core_Selector_Controller::TEMPLATE
107 );
108
109 $controller->setEmbedded(TRUE);
110 $controller->run();
111
112 return parent::run();
113 }
114 }
115