Merge branch 4.6 into master
[civicrm-core.git] / CRM / Member / Form / MembershipConfig.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * Base class for offline membership / membership type / membership renewal and membership status forms
38 *
39 */
40 class 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 /**
50 * The name of the BAO object for this form.
51 *
52 * @var string
53 */
54 protected $_BAOName;
55
56 /**
57 * Explicitly declare the entity api name.
58 */
59 public function getDefaultEntity() {
60 return 'MembershipType';
61 }
62
63 public function preProcess() {
64 $this->_id = $this->get('id');
65 $this->_BAOName = $this->get('BAOName');
66 }
67
68 /**
69 * Set default values for the form. MobileProvider that in edit/view mode
70 * the default values are retrieved from the database
71 *
72 *
73 * @return array
74 * defaults
75 */
76 public function setDefaultValues() {
77 $defaults = array();
78
79 if (isset($this->_id)) {
80 $params = array('id' => $this->_id);
81 $baoName = $this->_BAOName;
82 $baoName::retrieve($params, $defaults);
83 }
84
85 if (isset($defaults['minimum_fee'])) {
86 $defaults['minimum_fee'] = CRM_Utils_Money::format($defaults['minimum_fee'], NULL, '%a');
87 }
88
89 if (isset($defaults['status'])) {
90 $this->assign('membershipStatus', $defaults['status']);
91 }
92
93 if ($this->_action & CRM_Core_Action::ADD) {
94 $defaults['is_active'] = 1;
95 }
96
97 if (isset($defaults['member_of_contact_id']) &&
98 $defaults['member_of_contact_id']
99 ) {
100 $defaults['member_org'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
101 $defaults['member_of_contact_id'], 'display_name'
102 );
103 }
104 return $defaults;
105 }
106
107 /**
108 * Build the form object.
109 *
110 * @return void
111 */
112 public function buildQuickForm() {
113 if ($this->_action & CRM_Core_Action::RENEW) {
114 $this->addButtons(array(
115 array(
116 'type' => 'upload',
117 'name' => ts('Renew'),
118 'isDefault' => TRUE,
119 ),
120 array(
121 'type' => 'cancel',
122 'name' => ts('Cancel'),
123 ),
124 )
125 );
126 }
127 elseif ($this->_action & CRM_Core_Action::DELETE) {
128 $this->addButtons(array(
129 array(
130 'type' => 'next',
131 'name' => ts('Delete'),
132 'isDefault' => TRUE,
133 ),
134 array(
135 'type' => 'cancel',
136 'name' => ts('Cancel'),
137 ),
138 )
139 );
140 }
141 else {
142 $this->addButtons(array(
143 array(
144 'type' => 'upload',
145 'name' => ts('Save'),
146 'isDefault' => TRUE,
147 ),
148 array(
149 'type' => 'upload',
150 'name' => ts('Save and New'),
151 'subName' => 'new',
152 ),
153 array(
154 'type' => 'cancel',
155 'name' => ts('Cancel'),
156 ),
157 )
158 );
159 }
160 }
161
162 }