Merge pull request #42 from pradpnayak/CRM-11983
[civicrm-core.git] / CRM / Contribute / Form.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components generic to Mobile provider
38 *
39 */
40class CRM_Contribute_Form extends CRM_Core_Form {
41
42 /**
43 * The id of the object being edited / created
44 *
45 * @var int
46 */
47 protected $_id;
48
49 /**
50 * The name of the BAO object for this form
51 *
52 * @var string
53 */
54 protected $_BAOName; function preProcess() {
55 $this->_id = $this->get('id');
56 $this->_BAOName = $this->get('BAOName');
57 }
58
59 /**
60 * This function sets the default values for the form. MobileProvider that in edit/view mode
61 * the default values are retrieved from the database
62 *
63 * @access public
64 *
65 * @return None
66 */
67 function setDefaultValues() {
68 $defaults = array();
69 $params = array();
70
71 if (isset($this->_id)) {
72 $params = array('id' => $this->_id);
73 if (!empty( $this->_BAOName)) {
74 require_once (str_replace('_', DIRECTORY_SEPARATOR, $this->_BAOName) . ".php");
75 eval($this->_BAOName . '::retrieve( $params, $defaults );');
76 }
77 }
78 if ($this->_action == CRM_Core_Action::DELETE && CRM_Utils_Array::value('name', $defaults)) {
79 $this->assign('delName', $defaults['name']);
80 }
81 elseif ($this->_action == CRM_Core_Action::ADD) {
82 $condition = " AND is_default = 1";
83 $values = CRM_Core_OptionGroup::values('financial_account_type', false, false, false, $condition);
84 $defaults['financial_account_type_id'] = array_keys($values);
85 $defaults['is_active'] = 1;
86
87 }
88 elseif ($this->_action & CRM_Core_Action::UPDATE) {
89 if (CRM_Utils_Array::value('contact_id', $defaults) || CRM_Utils_Array::value('created_id', $defaults)) {
90 $contactID = CRM_Utils_Array::value('created_id', $defaults) ? $defaults['created_id'] : $defaults['contact_id'];
91 $this->assign('created_id', $contactID);
92 $this->assign('organisationId', $contactID);
93 }
94
95 if ($parentId = CRM_Utils_Array::value('parent_id', $defaults)) {
96 $this->assign('parentId', $parentId);
97 }
98 }
99 return $defaults;
100 }
101
102 /**
103 * Function to actually build the form
104 *
105 * @return None
106 * @access public
107 */
108 public function buildQuickForm() {
109 $this->addButtons(array(
110 array(
111 'type' => 'next',
112 'name' => ts('Save'),
113 'isDefault' => TRUE,
114 ),
115 array(
116 'type' => 'cancel',
117 'name' => ts('Cancel'),
118 ),
119 )
120 );
121
122 if ($this->_action & CRM_Core_Action::DELETE) {
123 $this->addButtons(array(
124 array(
125 'type' => 'next',
126 'name' => ts('Delete'),
127 'isDefault' => TRUE,
128 ),
129 array(
130 'type' => 'cancel',
131 'name' => ts('Cancel'),
132 ),
133 )
134 );
135 }
136 }
137}
138