Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-08-12-15-44-44
[civicrm-core.git] / CRM / Activity / Form / ActivityView.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class handle activity view mode
38 *
39 */
40class CRM_Activity_Form_ActivityView extends CRM_Core_Form {
41
42 /**
fe482240 43 * Set variables up before form is built.
6a488035
TO
44 *
45 * @return void
6a488035
TO
46 */
47 public function preProcess() {
48 //get the activity values
49 $activityId = CRM_Utils_Request::retrieve('id', 'Positive', $this);
353ffa53
TO
50 $context = CRM_Utils_Request::retrieve('context', 'String', $this);
51 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this);
6a488035
TO
52
53 //check for required permissions, CRM-6264
54 if ($activityId &&
55 !CRM_Activity_BAO_Activity::checkPermission($activityId, CRM_Core_Action::VIEW)
56 ) {
57 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
58 }
59
60 $session = CRM_Core_Session::singleton();
61 if (!in_array($context, array(
353ffa53
TO
62 'home',
63 'dashlet',
408b79bf 64 'dashletFullscreen',
353ffa53
TO
65 ))
66 ) {
6a488035
TO
67 $url = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$cid}&selectedChild=activity");
68 }
69 else {
70 $url = CRM_Utils_System::url('civicrm/dashboard', 'reset=1');
71 }
72
73 $session->pushUserContext($url);
74 $defaults = array();
75 $params = array('id' => $activityId);
76 CRM_Activity_BAO_Activity::retrieve($params, $defaults);
77
78 //set activity type name and description to template
79 list($activityTypeName, $activityTypeDescription) = CRM_Core_BAO_OptionValue::getActivityTypeDetails($defaults['activity_type_id']);
80
81 $this->assign('activityTypeName', $activityTypeName);
82 $this->assign('activityTypeDescription', $activityTypeDescription);
83
a7488080 84 if (!empty($defaults['mailingId'])) {
6a488035
TO
85 $this->_mailing_id = CRM_Utils_Array::value('source_record_id', $defaults);
86 $mailingReport = CRM_Mailing_BAO_Mailing::report($this->_mailing_id, TRUE);
87 CRM_Mailing_BAO_Mailing::getMailingContent($mailingReport, $this);
88 $this->assign('mailingReport', $mailingReport);
89
90 $full_open_report = CRM_Mailing_Event_BAO_Opened::getRows(
91 $this->_mailing_id, NULL, FALSE, NULL, NULL, NULL, $cid);
32864ccf 92 $this->assign('openreport', $full_open_report);
6a488035 93
481a74f4 94 $click_thru_report = CRM_Mailing_Event_BAO_TrackableURLOpen::getRows($this->_mailing_id, NULL, FALSE, NULL, NULL, NULL, NULL, $cid);
32864ccf 95 $this->assign('clickreport', $click_thru_report);
6a488035
TO
96 }
97
98 foreach ($defaults as $key => $value) {
99 if (substr($key, -3) != '_id') {
100 $values[$key] = $value;
101 }
102 }
103
104 //get the campaign
105 if ($campaignId = CRM_Utils_Array::value('campaign_id', $defaults)) {
106 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
107 $values['campaign'] = $campaigns[$campaignId];
108 }
109 if ($engagementLevel = CRM_Utils_Array::value('engagement_level', $defaults)) {
110 $engagementLevels = CRM_Campaign_PseudoConstant::engagementLevel();
111 $values['engagement_level'] = CRM_Utils_Array::value($engagementLevel, $engagementLevels, $engagementLevel);
112 }
113
114 $values['attachment'] = CRM_Core_BAO_File::attachmentInfo('civicrm_activity', $activityId);
115 $this->assign('values', $values);
116 }
117
118 /**
fe482240 119 * Build the form object.
6a488035 120 *
355ba699 121 * @return void
6a488035
TO
122 */
123 public function buildQuickForm() {
124 $this->addButtons(array(
125 array(
a10432db 126 'type' => 'cancel',
6a488035
TO
127 'name' => ts('Done'),
128 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
129 'isDefault' => TRUE,
130 ),
131 )
132 );
133 }
96025800 134
6a488035 135}