Commit | Line | Data |
---|---|---|
6a488035 TO |
1 | <?php |
2 | /* | |
3 | +--------------------------------------------------------------------+ | |
06b69b18 | 4 | | CiviCRM version 4.5 | |
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 | /** | |
37 | * This class generates form components generic to Mobile provider | |
38 | * | |
39 | */ | |
40 | class 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 | */ | |
430ae6dd TO |
54 | protected $_BAOName; |
55 | ||
56 | function preProcess() { | |
6a488035 TO |
57 | $this->_id = $this->get('id'); |
58 | $this->_BAOName = $this->get('BAOName'); | |
59 | } | |
60 | ||
61 | /** | |
62 | * This function sets the default values for the form. MobileProvider that in edit/view mode | |
63 | * the default values are retrieved from the database | |
64 | * | |
65 | * @access public | |
66 | * | |
355ba699 | 67 | * @return void |
6a488035 TO |
68 | */ |
69 | function setDefaultValues() { | |
70 | $defaults = array(); | |
71 | $params = array(); | |
72 | ||
73 | if (isset($this->_id)) { | |
74 | $params = array('id' => $this->_id); | |
75 | if (!empty( $this->_BAOName)) { | |
0e6e8724 DL |
76 | $baoName = $this->_BAOName; |
77 | $baoName::retrieve($params, $defaults); | |
6a488035 TO |
78 | } |
79 | } | |
8cc574cf | 80 | if ($this->_action == CRM_Core_Action::DELETE && !empty($defaults['name'])) { |
6a488035 TO |
81 | $this->assign('delName', $defaults['name']); |
82 | } | |
83 | elseif ($this->_action == CRM_Core_Action::ADD) { | |
84 | $condition = " AND is_default = 1"; | |
85 | $values = CRM_Core_OptionGroup::values('financial_account_type', false, false, false, $condition); | |
86 | $defaults['financial_account_type_id'] = array_keys($values); | |
87 | $defaults['is_active'] = 1; | |
88 | ||
89 | } | |
90 | elseif ($this->_action & CRM_Core_Action::UPDATE) { | |
8cc574cf | 91 | if (!empty($defaults['contact_id']) || !empty($defaults['created_id'])) { |
0d8afee2 | 92 | $contactID = !empty($defaults['created_id']) ? $defaults['created_id'] : $defaults['contact_id']; |
6a488035 TO |
93 | $this->assign('created_id', $contactID); |
94 | $this->assign('organisationId', $contactID); | |
95 | } | |
96 | ||
97 | if ($parentId = CRM_Utils_Array::value('parent_id', $defaults)) { | |
98 | $this->assign('parentId', $parentId); | |
99 | } | |
0e6e8724 | 100 | } |
6a488035 TO |
101 | return $defaults; |
102 | } | |
103 | ||
104 | /** | |
105 | * Function to actually build the form | |
106 | * | |
355ba699 | 107 | * @return void |
6a488035 TO |
108 | * @access public |
109 | */ | |
110 | public function buildQuickForm() { | |
111 | $this->addButtons(array( | |
112 | array( | |
113 | 'type' => 'next', | |
114 | 'name' => ts('Save'), | |
115 | 'isDefault' => TRUE, | |
116 | ), | |
117 | array( | |
118 | 'type' => 'cancel', | |
119 | 'name' => ts('Cancel'), | |
120 | ), | |
121 | ) | |
122 | ); | |
123 | ||
124 | if ($this->_action & CRM_Core_Action::DELETE) { | |
125 | $this->addButtons(array( | |
126 | array( | |
127 | 'type' => 'next', | |
128 | 'name' => ts('Delete'), | |
129 | 'isDefault' => TRUE, | |
130 | ), | |
131 | array( | |
132 | 'type' => 'cancel', | |
133 | 'name' => ts('Cancel'), | |
134 | ), | |
135 | ) | |
136 | ); | |
137 | } | |
138 | } | |
139 | } | |
140 |