Update version in comments
[civicrm-core.git] / CRM / Member / Form / MembershipConfig.php
CommitLineData
fb3082b2
EM
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
fb3082b2
EM
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
fb3082b2
EM
27
28/**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36/**
37 * Base class for offline membership / membership type / membership renewal and membership status forms
38 *
39 */
40class CRM_Member_Form_MembershipConfig extends CRM_Core_Form {
41
42 /**
43 * The id of the object being edited / created
44 *
45 * @var int
46 */
47 public $_id;
48
49 /**
fe482240 50 * The name of the BAO object for this form.
fb3082b2
EM
51 *
52 * @var string
53 */
54 protected $_BAOName;
55
00be9182 56 public function preProcess() {
fb3082b2
EM
57 $this->_id = $this->get('id');
58 $this->_BAOName = $this->get('BAOName');
59 }
60
61 /**
c490a46a 62 * Set default values for the form. MobileProvider that in edit/view mode
fb3082b2
EM
63 * the default values are retrieved from the database
64 *
fb3082b2 65 *
a6c01b45
CW
66 * @return array
67 * defaults
fb3082b2 68 */
00be9182 69 public function setDefaultValues() {
fb3082b2
EM
70 $defaults = array();
71
72 if (isset($this->_id)) {
73 $params = array('id' => $this->_id);
74 $baoName = $this->_BAOName;
75 $baoName::retrieve($params, $defaults);
76 }
77
78 if (isset($defaults['minimum_fee'])) {
79 $defaults['minimum_fee'] = CRM_Utils_Money::format($defaults['minimum_fee'], NULL, '%a');
80 }
81
82 if (isset($defaults['status'])) {
83 $this->assign('membershipStatus', $defaults['status']);
84 }
85
86 if ($this->_action & CRM_Core_Action::ADD) {
87 $defaults['is_active'] = 1;
88 }
89
90 if (isset($defaults['member_of_contact_id']) &&
91 $defaults['member_of_contact_id']
92 ) {
93 $defaults['member_org'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
94 $defaults['member_of_contact_id'], 'display_name'
95 );
96 }
97 return $defaults;
98 }
99
100 /**
fe482240 101 * Build the form object.
fb3082b2
EM
102 *
103 * @return void
fb3082b2
EM
104 */
105 public function buildQuickForm() {
106 if ($this->_action & CRM_Core_Action::RENEW) {
107 $this->addButtons(array(
108 array(
109 'type' => 'upload',
110 'name' => ts('Renew'),
21dfd5f5 111 'isDefault' => TRUE,
fb3082b2
EM
112 ),
113 array(
114 'type' => 'cancel',
21dfd5f5
TO
115 'name' => ts('Cancel'),
116 ),
fb3082b2
EM
117 )
118 );
119 }
120 elseif ($this->_action & CRM_Core_Action::DELETE) {
121 $this->addButtons(array(
122 array(
123 'type' => 'next',
124 'name' => ts('Delete'),
21dfd5f5 125 'isDefault' => TRUE,
fb3082b2
EM
126 ),
127 array(
128 'type' => 'cancel',
21dfd5f5
TO
129 'name' => ts('Cancel'),
130 ),
fb3082b2
EM
131 )
132 );
133 }
134 else {
135 $this->addButtons(array(
136 array(
137 'type' => 'upload',
138 'name' => ts('Save'),
21dfd5f5 139 'isDefault' => TRUE,
fb3082b2
EM
140 ),
141 array(
142 'type' => 'upload',
143 'name' => ts('Save and New'),
21dfd5f5 144 'subName' => 'new',
fb3082b2
EM
145 ),
146 array(
147 'type' => 'cancel',
21dfd5f5
TO
148 'name' => ts('Cancel'),
149 ),
fb3082b2
EM
150 )
151 );
152 }
153 }
96025800 154
fb3082b2 155}