Merge pull request #12125 from eileenmcnaughton/membership_config
[civicrm-core.git] / CRM / Member / Form / MembershipConfig.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
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 public function preProcess() {
57 $this->_id = $this->get('id');
58 $this->_BAOName = $this->get('BAOName');
59 }
60
61 /**
62 * Set default values for the form. MobileProvider that in edit/view mode
63 * the default values are retrieved from the database
64 *
65 * @return array
66 * defaults
67 */
68 public function setDefaultValues() {
69 $defaults = array();
70
71 if (isset($this->_id)) {
72 $params = array('id' => $this->_id);
73 $baoName = $this->_BAOName;
74 $baoName::retrieve($params, $defaults);
75 }
76
77 if (isset($defaults['minimum_fee'])) {
78 $defaults['minimum_fee'] = CRM_Utils_Money::format($defaults['minimum_fee'], NULL, '%a');
79 }
80
81 if (isset($defaults['status'])) {
82 $this->assign('membershipStatus', $defaults['status']);
83 }
84
85 if ($this->_action & CRM_Core_Action::ADD) {
86 $defaults['is_active'] = 1;
87 }
88
89 if (isset($defaults['member_of_contact_id']) &&
90 $defaults['member_of_contact_id']
91 ) {
92 $defaults['member_org'] = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact',
93 $defaults['member_of_contact_id'], 'display_name'
94 );
95 }
96 return $defaults;
97 }
98
99 /**
100 * Build the form object.
101 *
102 * @return void
103 */
104 public function buildQuickForm() {
105 if ($this->_action & CRM_Core_Action::RENEW) {
106 $this->addButtons(array(
107 array(
108 'type' => 'upload',
109 'name' => ts('Renew'),
110 'isDefault' => TRUE,
111 ),
112 array(
113 'type' => 'cancel',
114 'name' => ts('Cancel'),
115 ),
116 ));
117 }
118 elseif ($this->_action & CRM_Core_Action::DELETE) {
119 $this->addButtons(array(
120 array(
121 'type' => 'next',
122 'name' => ts('Delete'),
123 'isDefault' => TRUE,
124 ),
125 array(
126 'type' => 'cancel',
127 'name' => ts('Cancel'),
128 ),
129 ));
130 }
131 else {
132 $this->addButtons(array(
133 array(
134 'type' => 'upload',
135 'name' => ts('Save'),
136 'isDefault' => TRUE,
137 ),
138 array(
139 'type' => 'upload',
140 'name' => ts('Save and New'),
141 'subName' => 'new',
142 ),
143 array(
144 'type' => 'cancel',
145 'name' => ts('Cancel'),
146 ),
147 ));
148 }
149 }
150
151 }