Merge pull request #14249 from yashodha/959_dev
[civicrm-core.git] / CRM / Contribute / Form.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
95cdcc0f 35 * This class generates form components generic to Contribution admin.
6a488035 36 */
81b69437 37class CRM_Contribute_Form extends CRM_Admin_Form {
6a488035
TO
38
39 /**
95cdcc0f 40 * Set default values for the form.
6a488035 41 *
81b69437 42 * @return array
6a488035 43 */
00be9182 44 public function setDefaultValues() {
be2fb01f 45 $defaults = [];
6a488035
TO
46
47 if (isset($this->_id)) {
be2fb01f 48 $params = ['id' => $this->_id];
481a74f4 49 if (!empty($this->_BAOName)) {
0e6e8724
DL
50 $baoName = $this->_BAOName;
51 $baoName::retrieve($params, $defaults);
6a488035
TO
52 }
53 }
8cc574cf 54 if ($this->_action == CRM_Core_Action::DELETE && !empty($defaults['name'])) {
6a488035
TO
55 $this->assign('delName', $defaults['name']);
56 }
57 elseif ($this->_action == CRM_Core_Action::ADD) {
58 $condition = " AND is_default = 1";
874c9be7 59 $values = CRM_Core_OptionGroup::values('financial_account_type', FALSE, FALSE, FALSE, $condition);
6a488035
TO
60 $defaults['financial_account_type_id'] = array_keys($values);
61 $defaults['is_active'] = 1;
62
63 }
64 elseif ($this->_action & CRM_Core_Action::UPDATE) {
8cc574cf 65 if (!empty($defaults['contact_id']) || !empty($defaults['created_id'])) {
0d8afee2 66 $contactID = !empty($defaults['created_id']) ? $defaults['created_id'] : $defaults['contact_id'];
6a488035
TO
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 }
0e6e8724 74 }
6a488035
TO
75 return $defaults;
76 }
77
6a488035 78}