Merge pull request #15338 from totten/master-poc-postcommit
[civicrm-core.git] / CRM / Financial / Page / FinancialType.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 * Page for displaying list of financial types
20 */
21 class CRM_Financial_Page_FinancialType extends CRM_Core_Page_Basic {
22
23 public $useLivePageJS = TRUE;
24 /**
25 * The action links that we need to display for the browse screen.
26 *
27 * @var array
28 */
29 public static $_links = NULL;
30
31 /**
32 * Get BAO Name.
33 *
34 * @return string
35 * Classname of BAO.
36 */
37 public function getBAOName() {
38 return 'CRM_Financial_BAO_FinancialType';
39 }
40
41 /**
42 * Get action Links.
43 *
44 * @return array
45 * (reference) of action links
46 */
47 public function &links() {
48 if (!(self::$_links)) {
49 self::$_links = [
50 CRM_Core_Action::BROWSE => [
51 'name' => ts('Accounts'),
52 'url' => 'civicrm/admin/financial/financialType/accounts',
53 'qs' => 'reset=1&action=browse&aid=%%id%%',
54 'title' => ts('Accounts'),
55 ],
56 CRM_Core_Action::UPDATE => [
57 'name' => ts('Edit'),
58 'url' => 'civicrm/admin/financial/financialType',
59 'qs' => 'action=update&id=%%id%%&reset=1',
60 'title' => ts('Edit Financial Type'),
61 ],
62 CRM_Core_Action::DISABLE => [
63 'name' => ts('Disable'),
64 'ref' => 'crm-enable-disable',
65 'title' => ts('Disable Financial Type'),
66 ],
67 CRM_Core_Action::ENABLE => [
68 'name' => ts('Enable'),
69 'ref' => 'crm-enable-disable',
70 'title' => ts('Enable Financial Type'),
71 ],
72 CRM_Core_Action::DELETE => [
73 'name' => ts('Delete'),
74 'url' => 'civicrm/admin/financial/financialType',
75 'qs' => 'action=delete&id=%%id%%',
76 'title' => ts('Delete Financial Type'),
77 ],
78 ];
79 }
80 return self::$_links;
81 }
82
83 /**
84 * Browse all financial types.
85 */
86 public function browse() {
87 // Check permission for Financial Type when ACL-FT is enabled
88 if (CRM_Financial_BAO_FinancialType::isACLFinancialTypeStatus()
89 && !CRM_Core_Permission::check('administer CiviCRM Financial Types')
90 ) {
91 CRM_Core_Error::statusBounce(ts('You do not have permission to access this page.'));
92 }
93 // get all financial types sorted by weight
94 $financialType = [];
95 $dao = new CRM_Financial_DAO_FinancialType();
96 $dao->orderBy('name');
97 $dao->find();
98
99 while ($dao->fetch()) {
100 $financialType[$dao->id] = [];
101 CRM_Core_DAO::storeValues($dao, $financialType[$dao->id]);
102 $defaults = $financialAccountId = [];
103 $financialAccounts = CRM_Contribute_PseudoConstant::financialAccount();
104 $financialAccountIds = [];
105
106 $params['entity_id'] = $dao->id;
107 $params['entity_table'] = 'civicrm_financial_type';
108 $null = [];
109 CRM_Financial_BAO_FinancialTypeAccount::retrieve($params, $null, $financialAccountIds);
110
111 foreach ($financialAccountIds as $key => $values) {
112 if (!empty($financialAccounts[$values['financial_account_id']])) {
113 $financialAccountId[$values['financial_account_id']] = CRM_Utils_Array::value(
114 $values['financial_account_id'], $financialAccounts);
115 }
116 }
117
118 if (!empty($financialAccountId)) {
119 $financialType[$dao->id]['financial_account'] = implode(',', $financialAccountId);
120 }
121
122 // form all action links
123 $action = array_sum(array_keys($this->links()));
124
125 // update enable/disable links depending on if it is is_reserved or is_active
126 if ($dao->is_reserved) {
127 $action -= CRM_Core_Action::ENABLE;
128 $action -= CRM_Core_Action::DISABLE;
129 $action -= CRM_Core_Action::DELETE;
130 }
131 else {
132 if ($dao->is_active) {
133 $action -= CRM_Core_Action::ENABLE;
134 }
135 else {
136 $action -= CRM_Core_Action::DISABLE;
137 }
138 }
139
140 $financialType[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
141 ['id' => $dao->id],
142 ts('more'),
143 FALSE,
144 'financialType.manage.action',
145 'FinancialType',
146 $dao->id
147 );
148 }
149 $this->assign('rows', $financialType);
150 }
151
152 /**
153 * Get name of edit form.
154 *
155 * @return string
156 * Classname of edit form.
157 */
158 public function editForm() {
159 return 'CRM_Financial_Form_FinancialType';
160 }
161
162 /**
163 * Get edit form name.
164 *
165 * @return string
166 * name of this page.
167 */
168 public function editName() {
169 return 'Financial Types';
170 }
171
172 /**
173 * Get user context.
174 *
175 * @param null $mode
176 *
177 * @return string
178 * user context.
179 */
180 public function userContext($mode = NULL) {
181 return 'civicrm/admin/financial/financialType';
182 }
183
184 }