Merge pull request #15921 from civicrm/5.20
[civicrm-core.git] / CRM / Pledge / Form / PledgeView.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for Pledge
20 */
21 class CRM_Pledge_Form_PledgeView extends CRM_Core_Form {
22
23 /**
24 * Set variables up before form is built.
25 */
26 public function preProcess() {
27
28 $values = $ids = [];
29 $params = ['id' => $this->get('id')];
30 CRM_Pledge_BAO_Pledge::getValues($params,
31 $values,
32 $ids
33 );
34
35 $values['frequencyUnit'] = ts('%1(s)', [1 => $values['frequency_unit']]);
36
37 if (isset($values["honor_contact_id"]) && $values["honor_contact_id"]) {
38 $sql = "SELECT display_name FROM civicrm_contact WHERE id = " . $values["honor_contact_id"];
39 $dao = new CRM_Core_DAO();
40 $dao->query($sql);
41 if ($dao->fetch()) {
42 $url = CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid=$values[honor_contact_id]");
43 $values["honor_display"] = "<A href = $url>" . $dao->display_name . "</A>";
44 }
45 $honor = CRM_Core_PseudoConstant::get('CRM_Pledge_DAO_Pledge', 'honor_type_id');
46 $values['honor_type'] = $honor[$values['honor_type_id']];
47 }
48
49 // handle custom data.
50 $groupTree = CRM_Core_BAO_CustomGroup::getTree('Pledge', NULL, $params['id']);
51 CRM_Core_BAO_CustomGroup::buildCustomDataView($this, $groupTree, FALSE, NULL, NULL, NULL, $params['id']);
52
53 if (!empty($values['contribution_page_id'])) {
54 $values['contribution_page'] = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $values['contribution_page_id'], 'title');
55 }
56
57 $values['financial_type'] = CRM_Utils_Array::value($values['financial_type_id'], CRM_Contribute_PseudoConstant::financialType());
58
59 if ($values['status_id']) {
60 $values['pledge_status'] = CRM_Core_PseudoConstant::getKey('CRM_Pledge_BAO_Pledge', 'status_id', $values['status_id']);
61 }
62
63 $url = CRM_Utils_System::url('civicrm/contact/view/pledge',
64 "action=view&reset=1&id={$values['id']}&cid={$values['contact_id']}&context=home"
65 );
66
67 $recentOther = [];
68 if (CRM_Core_Permission::checkActionPermission('CiviPledge', CRM_Core_Action::UPDATE)) {
69 $recentOther['editUrl'] = CRM_Utils_System::url('civicrm/contact/view/pledge',
70 "action=update&reset=1&id={$values['id']}&cid={$values['contact_id']}&context=home"
71 );
72 }
73 if (CRM_Core_Permission::checkActionPermission('CiviPledge', CRM_Core_Action::DELETE)) {
74 $recentOther['deleteUrl'] = CRM_Utils_System::url('civicrm/contact/view/pledge',
75 "action=delete&reset=1&id={$values['id']}&cid={$values['contact_id']}&context=home"
76 );
77 }
78
79 $displayName = CRM_Contact_BAO_Contact::displayName($values['contact_id']);
80 $this->assign('displayName', $displayName);
81
82 $title = $displayName .
83 ' - (' . ts('Pledged') . ' ' . CRM_Utils_Money::format($values['pledge_amount']) .
84 ' - ' . $values['financial_type'] . ')';
85
86 // add Pledge to Recent Items
87 CRM_Utils_Recent::add($title,
88 $url,
89 $values['id'],
90 'Pledge',
91 $values['contact_id'],
92 NULL,
93 $recentOther
94 );
95
96 // Check if this is default domain contact CRM-10482
97 if (CRM_Contact_BAO_Contact::checkDomainContact($values['contact_id'])) {
98 $displayName .= ' (' . ts('default organization') . ')';
99 }
100 // omitting contactImage from title for now since the summary overlay css doesn't work outside of our crm-container
101 CRM_Utils_System::setTitle(ts('View Pledge by') . ' ' . $displayName);
102
103 // do check for campaigns
104 if ($campaignId = CRM_Utils_Array::value('campaign_id', $values)) {
105 $campaigns = CRM_Campaign_BAO_Campaign::getCampaigns($campaignId);
106 $values['campaign'] = $campaigns[$campaignId];
107 }
108
109 $this->assign($values);
110 }
111
112 /**
113 * Build the form object.
114 */
115 public function buildQuickForm() {
116 $this->addButtons([
117 [
118 'type' => 'next',
119 'name' => ts('Done'),
120 'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
121 'isDefault' => TRUE,
122 ],
123 ]);
124 }
125
126 }