Merge pull request #14249 from yashodha/959_dev
[civicrm-core.git] / CRM / Contribute / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33
34 /**
35 * This class generates form components generic to Contribution admin.
36 */
37 class CRM_Contribute_Form extends CRM_Admin_Form {
38
39 /**
40 * Set default values for the form.
41 *
42 * @return array
43 */
44 public function setDefaultValues() {
45 $defaults = [];
46
47 if (isset($this->_id)) {
48 $params = ['id' => $this->_id];
49 if (!empty($this->_BAOName)) {
50 $baoName = $this->_BAOName;
51 $baoName::retrieve($params, $defaults);
52 }
53 }
54 if ($this->_action == CRM_Core_Action::DELETE && !empty($defaults['name'])) {
55 $this->assign('delName', $defaults['name']);
56 }
57 elseif ($this->_action == CRM_Core_Action::ADD) {
58 $condition = " AND is_default = 1";
59 $values = CRM_Core_OptionGroup::values('financial_account_type', FALSE, FALSE, FALSE, $condition);
60 $defaults['financial_account_type_id'] = array_keys($values);
61 $defaults['is_active'] = 1;
62
63 }
64 elseif ($this->_action & CRM_Core_Action::UPDATE) {
65 if (!empty($defaults['contact_id']) || !empty($defaults['created_id'])) {
66 $contactID = !empty($defaults['created_id']) ? $defaults['created_id'] : $defaults['contact_id'];
67 $this->assign('created_id', $contactID);
68 $this->assign('organisationId', $contactID);
69 }
70
71 if ($parentId = CRM_Utils_Array::value('parent_id', $defaults)) {
72 $this->assign('parentId', $parentId);
73 }
74 }
75 return $defaults;
76 }
77
78 }