INFRA-132 - Fix spacing of @return tag in comments
[civicrm-core.git] / CRM / Member / Page / MembershipStatus.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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 * Page for displaying list of membership types
38 */
39class CRM_Member_Page_MembershipStatus extends CRM_Core_Page_Basic {
40
96f50de2
CW
41 public $useLivePageJS = TRUE;
42
6a488035
TO
43 /**
44 * The action links that we need to display for the browse screen
45 *
46 * @var array
47 * @static
48 */
49 static $_links = NULL;
50
51 /**
52 * Get BAO Name
53 *
a6c01b45
CW
54 * @return string
55 * Classname of BAO.
6a488035 56 */
00be9182 57 public function getBAOName() {
6a488035
TO
58 return 'CRM_Member_BAO_MembershipStatus';
59 }
60
61 /**
62 * Get action Links
63 *
a6c01b45
CW
64 * @return array
65 * (reference) of action links
6a488035 66 */
00be9182 67 public function &links() {
6a488035
TO
68 if (!(self::$_links)) {
69 self::$_links = array(
70 CRM_Core_Action::UPDATE => array(
71 'name' => ts('Edit'),
72 'url' => 'civicrm/admin/member/membershipStatus',
73 'qs' => 'action=update&id=%%id%%&reset=1',
74 'title' => ts('Edit Membership Status'),
75 ),
76 CRM_Core_Action::DISABLE => array(
77 'name' => ts('Disable'),
4d17a233 78 'ref' => 'crm-enable-disable',
6a488035
TO
79 'title' => ts('Disable Membership Status'),
80 ),
81 CRM_Core_Action::ENABLE => array(
82 'name' => ts('Enable'),
4d17a233 83 'ref' => 'crm-enable-disable',
6a488035
TO
84 'title' => ts('Enable Membership Status'),
85 ),
86 CRM_Core_Action::DELETE => array(
87 'name' => ts('Delete'),
88 'url' => 'civicrm/admin/member/membershipStatus',
89 'qs' => 'action=delete&id=%%id%%',
90 'title' => ts('Delete Membership Status'),
91 ),
92 );
93 }
94 return self::$_links;
95 }
96
97 /**
98 * Run the page.
99 *
100 * This method is called after the page is created. It checks for the
101 * type of action and executes that action.
102 * Finally it calls the parent's run method.
103 *
104 * @return void
6a488035
TO
105 *
106 */
00be9182 107 public function run() {
6a488035
TO
108 // get the requested action
109 $action = CRM_Utils_Request::retrieve('action', 'String',
110 // default to 'browse'
111 $this, FALSE, 'browse'
112 );
113
114 // assign vars to templates
115 $this->assign('action', $action);
116 $id = CRM_Utils_Request::retrieve('id', 'Positive',
117 $this, FALSE, 0
118 );
119
120 // what action to take ?
121 if ($action & (CRM_Core_Action::UPDATE | CRM_Core_Action::ADD)) {
122 $this->edit($action, $id);
123 }
124 // finally browse the custom groups
125 $this->browse();
126
127 // parent run
128 return parent::run();
129 }
130
131 /**
132 * Browse all custom data groups.
133 *
134 *
135 * @return void
6a488035
TO
136 * @static
137 */
00be9182 138 public function browse() {
6a488035
TO
139 // get all custom groups sorted by weight
140 $membershipStatus = array();
141 $dao = new CRM_Member_DAO_MembershipStatus();
142
143 $dao->orderBy('weight');
144 $dao->find();
145
146 while ($dao->fetch()) {
147 $membershipStatus[$dao->id] = array();
148 CRM_Core_DAO::storeValues($dao, $membershipStatus[$dao->id]);
149
150 // form all action links
151 $action = array_sum(array_keys($this->links()));
152 // update enable/disable links depending on if it is is_reserved or is_active
153 if (!$dao->is_reserved) {
154 if ($dao->is_active) {
155 $action -= CRM_Core_Action::ENABLE;
156 }
157 else {
158 $action -= CRM_Core_Action::DISABLE;
159 }
160 $membershipStatus[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
87dab4a4
AH
161 array('id' => $dao->id),
162 ts('more'),
163 FALSE,
164 'membershipStatus.manage.action',
165 'MembershipStatus',
166 $dao->id
6a488035
TO
167 );
168 }
169 if ($startEvent = CRM_Utils_Array::value('start_event', $membershipStatus[$dao->id])) {
170 $membershipStatus[$dao->id]['start_event'] = ($startEvent == 'join_date') ? 'member since' : str_replace("_", " ", $startEvent);
171 }
172 if ($endEvent = CRM_Utils_Array::value('end_event', $membershipStatus[$dao->id])) {
173 $membershipStatus[$dao->id]['end_event'] = ($endEvent == 'join_date') ? 'member since' : str_replace("_", " ", $endEvent);
174 }
175 }
176 // Add order changing widget to selector
177 $returnURL = CRM_Utils_System::url('civicrm/admin/member/membershipStatus', "reset=1&action=browse");
178 CRM_Utils_Weight::addOrder($membershipStatus, 'CRM_Member_DAO_MembershipStatus',
179 'id', $returnURL
180 );
181
182 $this->assign('rows', $membershipStatus);
183 }
184
185 /**
186 * Get name of edit form
187 *
a6c01b45
CW
188 * @return string
189 * Classname of edit form.
6a488035 190 */
00be9182 191 public function editForm() {
6a488035
TO
192 return 'CRM_Member_Form_MembershipStatus';
193 }
194
195 /**
196 * Get edit form name
197 *
a6c01b45
CW
198 * @return string
199 * name of this page.
6a488035 200 */
00be9182 201 public function editName() {
6a488035
TO
202 return 'Membership Status';
203 }
204
205 /**
206 * Get user context.
207 *
da6b46f4
EM
208 * @param null $mode
209 *
a6c01b45
CW
210 * @return string
211 * user context.
6a488035 212 */
00be9182 213 public function userContext($mode = NULL) {
6a488035
TO
214 return 'civicrm/admin/member/membershipStatus';
215 }
216}