Merge pull request #22680 from mattwire/paymentstatushelpers
[civicrm-core.git] / CRM / Financial / Page / FinancialType.php
CommitLineData
6a488035 1<?php
6a488035 2/*
bc77d7c0
TO
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 +--------------------------------------------------------------------+
006389de 10 */
6a488035
TO
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17
18/**
19 * Page for displaying list of financial types
20 */
21class CRM_Financial_Page_FinancialType extends CRM_Core_Page_Basic {
96f50de2
CW
22
23 public $useLivePageJS = TRUE;
6a488035 24 /**
fe482240 25 * The action links that we need to display for the browse screen.
6a488035
TO
26 *
27 * @var array
6a488035 28 */
7b966967 29 public static $_links = NULL;
6a488035
TO
30
31 /**
fe482240 32 * Get BAO Name.
6a488035 33 *
a6c01b45
CW
34 * @return string
35 * Classname of BAO.
6a488035 36 */
00be9182 37 public function getBAOName() {
6a488035
TO
38 return 'CRM_Financial_BAO_FinancialType';
39 }
40
41 /**
fe482240 42 * Get action Links.
6a488035 43 *
a6c01b45
CW
44 * @return array
45 * (reference) of action links
6a488035 46 */
00be9182 47 public function &links() {
6a488035 48 if (!(self::$_links)) {
be2fb01f
CW
49 self::$_links = [
50 CRM_Core_Action::BROWSE => [
353ffa53
TO
51 'name' => ts('Accounts'),
52 'url' => 'civicrm/admin/financial/financialType/accounts',
53 'qs' => 'reset=1&action=browse&aid=%%id%%',
6a488035 54 'title' => ts('Accounts'),
be2fb01f
CW
55 ],
56 CRM_Core_Action::UPDATE => [
353ffa53
TO
57 'name' => ts('Edit'),
58 'url' => 'civicrm/admin/financial/financialType',
59 'qs' => 'action=update&id=%%id%%&reset=1',
6a488035 60 'title' => ts('Edit Financial Type'),
be2fb01f
CW
61 ],
62 CRM_Core_Action::DISABLE => [
353ffa53
TO
63 'name' => ts('Disable'),
64 'ref' => 'crm-enable-disable',
6a488035 65 'title' => ts('Disable Financial Type'),
be2fb01f
CW
66 ],
67 CRM_Core_Action::ENABLE => [
353ffa53
TO
68 'name' => ts('Enable'),
69 'ref' => 'crm-enable-disable',
6a488035 70 'title' => ts('Enable Financial Type'),
be2fb01f
CW
71 ],
72 CRM_Core_Action::DELETE => [
353ffa53
TO
73 'name' => ts('Delete'),
74 'url' => 'civicrm/admin/financial/financialType',
75 'qs' => 'action=delete&id=%%id%%',
6a488035 76 'title' => ts('Delete Financial Type'),
be2fb01f
CW
77 ],
78 ];
6a488035
TO
79 }
80 return self::$_links;
81 }
82
6a488035 83 /**
fe482240 84 * Browse all financial types.
6a488035 85 */
00be9182 86 public function browse() {
6a488035 87 // get all financial types sorted by weight
be2fb01f 88 $financialType = [];
6a488035
TO
89 $dao = new CRM_Financial_DAO_FinancialType();
90 $dao->orderBy('name');
91 $dao->find();
92
93 while ($dao->fetch()) {
be2fb01f 94 $financialType[$dao->id] = [];
481a74f4 95 CRM_Core_DAO::storeValues($dao, $financialType[$dao->id]);
be2fb01f 96 $defaults = $financialAccountId = [];
ecc1e0ef 97 $financialAccounts = CRM_Contribute_PseudoConstant::financialAccount();
be2fb01f 98 $financialAccountIds = [];
03e04002 99
ecc1e0ef
PN
100 $params['entity_id'] = $dao->id;
101 $params['entity_table'] = 'civicrm_financial_type';
db62d3a5
SL
102 $null = [];
103 CRM_Financial_BAO_FinancialTypeAccount::retrieve($params, $null, $financialAccountIds);
6a488035 104
9b873358 105 foreach ($financialAccountIds as $key => $values) {
a7488080 106 if (!empty($financialAccounts[$values['financial_account_id']])) {
9c1bc317 107 $financialAccountId[$values['financial_account_id']] = $financialAccounts[$values['financial_account_id']] ?? NULL;
6a488035
TO
108 }
109 }
110
111 if (!empty($financialAccountId)) {
481a74f4 112 $financialType[$dao->id]['financial_account'] = implode(',', $financialAccountId);
6a488035
TO
113 }
114
115 // form all action links
116 $action = array_sum(array_keys($this->links()));
117
118 // update enable/disable links depending on if it is is_reserved or is_active
119 if ($dao->is_reserved) {
120 $action -= CRM_Core_Action::ENABLE;
121 $action -= CRM_Core_Action::DISABLE;
122 $action -= CRM_Core_Action::DELETE;
6a488035
TO
123 }
124 else {
125 if ($dao->is_active) {
126 $action -= CRM_Core_Action::ENABLE;
127 }
128 else {
129 $action -= CRM_Core_Action::DISABLE;
130 }
131 }
132
133 $financialType[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
be2fb01f 134 ['id' => $dao->id],
87dab4a4
AH
135 ts('more'),
136 FALSE,
137 'financialType.manage.action',
138 'FinancialType',
139 $dao->id
140 );
6a488035
TO
141 }
142 $this->assign('rows', $financialType);
143 }
144
145 /**
fe482240 146 * Get name of edit form.
6a488035 147 *
a6c01b45
CW
148 * @return string
149 * Classname of edit form.
6a488035 150 */
00be9182 151 public function editForm() {
6a488035
TO
152 return 'CRM_Financial_Form_FinancialType';
153 }
154
155 /**
fe482240 156 * Get edit form name.
6a488035 157 *
a6c01b45
CW
158 * @return string
159 * name of this page.
6a488035 160 */
00be9182 161 public function editName() {
6a488035
TO
162 return 'Financial Types';
163 }
164
165 /**
166 * Get user context.
167 *
fd31fa4c
EM
168 * @param null $mode
169 *
a6c01b45
CW
170 * @return string
171 * user context.
6a488035 172 */
045f52a3 173 public function userContext($mode = NULL) {
6a488035
TO
174 return 'civicrm/admin/financial/financialType';
175 }
96025800 176
6a488035 177}