CRM-15789 - Remove ascii art from button text
[civicrm-core.git] / CRM / Contribute / Form.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
81b69437 37 * This class generates form components generic to Contribution admin
6a488035
TO
38 *
39 */
81b69437 40class CRM_Contribute_Form extends CRM_Admin_Form {
6a488035
TO
41
42 /**
c490a46a 43 * Set default values for the form. Note that in edit/view mode
6a488035
TO
44 * the default values are retrieved from the database
45 *
6a488035 46 *
81b69437 47 * @return array
6a488035 48 */
00be9182 49 public function setDefaultValues() {
6a488035 50 $defaults = array();
6a488035
TO
51
52 if (isset($this->_id)) {
53 $params = array('id' => $this->_id);
481a74f4 54 if (!empty($this->_BAOName)) {
0e6e8724
DL
55 $baoName = $this->_BAOName;
56 $baoName::retrieve($params, $defaults);
6a488035
TO
57 }
58 }
8cc574cf 59 if ($this->_action == CRM_Core_Action::DELETE && !empty($defaults['name'])) {
6a488035
TO
60 $this->assign('delName', $defaults['name']);
61 }
62 elseif ($this->_action == CRM_Core_Action::ADD) {
63 $condition = " AND is_default = 1";
874c9be7 64 $values = CRM_Core_OptionGroup::values('financial_account_type', FALSE, FALSE, FALSE, $condition);
6a488035
TO
65 $defaults['financial_account_type_id'] = array_keys($values);
66 $defaults['is_active'] = 1;
67
68 }
69 elseif ($this->_action & CRM_Core_Action::UPDATE) {
8cc574cf 70 if (!empty($defaults['contact_id']) || !empty($defaults['created_id'])) {
0d8afee2 71 $contactID = !empty($defaults['created_id']) ? $defaults['created_id'] : $defaults['contact_id'];
6a488035
TO
72 $this->assign('created_id', $contactID);
73 $this->assign('organisationId', $contactID);
74 }
75
76 if ($parentId = CRM_Utils_Array::value('parent_id', $defaults)) {
77 $this->assign('parentId', $parentId);
78 }
0e6e8724 79 }
6a488035
TO
80 return $defaults;
81 }
82
6a488035 83}