Merge branch 'phpunit-ob-fix' of https://github.com/giant-rabbit/civicrm-core into...
[civicrm-core.git] / CRM / Contribute / Form.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * This class generates form components generic to Contribution admin
38 *
39 */
40 class CRM_Contribute_Form extends CRM_Admin_Form {
41
42 /**
43 * Set default values for the form. Note that in edit/view mode
44 * the default values are retrieved from the database
45 *
46 * @access public
47 *
48 * @return array
49 */
50 function setDefaultValues() {
51 $defaults = array();
52
53 if (isset($this->_id)) {
54 $params = array('id' => $this->_id);
55 if (!empty( $this->_BAOName)) {
56 $baoName = $this->_BAOName;
57 $baoName::retrieve($params, $defaults);
58 }
59 }
60 if ($this->_action == CRM_Core_Action::DELETE && !empty($defaults['name'])) {
61 $this->assign('delName', $defaults['name']);
62 }
63 elseif ($this->_action == CRM_Core_Action::ADD) {
64 $condition = " AND is_default = 1";
65 $values = CRM_Core_OptionGroup::values('financial_account_type', false, false, false, $condition);
66 $defaults['financial_account_type_id'] = array_keys($values);
67 $defaults['is_active'] = 1;
68
69 }
70 elseif ($this->_action & CRM_Core_Action::UPDATE) {
71 if (!empty($defaults['contact_id']) || !empty($defaults['created_id'])) {
72 $contactID = !empty($defaults['created_id']) ? $defaults['created_id'] : $defaults['contact_id'];
73 $this->assign('created_id', $contactID);
74 $this->assign('organisationId', $contactID);
75 }
76
77 if ($parentId = CRM_Utils_Array::value('parent_id', $defaults)) {
78 $this->assign('parentId', $parentId);
79 }
80 }
81 return $defaults;
82 }
83
84 }
85