commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Member / Page / MembershipType.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 * Page for displaying list of membership types
38 */
39 class CRM_Member_Page_MembershipType extends CRM_Core_Page {
40
41 /**
42 * The action links that we need to display for the browse screen.
43 *
44 * @var array
45 */
46 static $_links = NULL;
47
48 public $useLivePageJS = TRUE;
49
50 /**
51 * Get action Links.
52 *
53 * @return array
54 * (reference) of action links
55 */
56 public function &links() {
57 if (!(self::$_links)) {
58 self::$_links = array(
59 CRM_Core_Action::UPDATE => array(
60 'name' => ts('Edit'),
61 'url' => 'civicrm/admin/member/membershipType/add',
62 'qs' => 'action=update&id=%%id%%&reset=1',
63 'title' => ts('Edit Membership Type'),
64 ),
65 CRM_Core_Action::DISABLE => array(
66 'name' => ts('Disable'),
67 'ref' => 'crm-enable-disable',
68 'title' => ts('Disable Membership Type'),
69 ),
70 CRM_Core_Action::ENABLE => array(
71 'name' => ts('Enable'),
72 'ref' => 'crm-enable-disable',
73 'title' => ts('Enable Membership Type'),
74 ),
75 CRM_Core_Action::DELETE => array(
76 'name' => ts('Delete'),
77 'url' => 'civicrm/admin/member/membershipType/add',
78 'qs' => 'action=delete&id=%%id%%',
79 'title' => ts('Delete Membership Type'),
80 ),
81 );
82 }
83 return self::$_links;
84 }
85
86 /**
87 * Run the page.
88 *
89 * This method is called after the page is created. It checks for the
90 * type of action and executes that action.
91 * Finally it calls the parent's run method.
92 *
93 * @return void
94 */
95 public function run() {
96 $this->browse();
97
98 // parent run
99 return parent::run();
100 }
101
102 /**
103 * Browse all membership types.
104 *
105 *
106 * @return void
107 */
108 public function browse() {
109 // get all membership types sorted by weight
110 $membershipType = array();
111 $dao = new CRM_Member_DAO_MembershipType();
112
113 $dao->orderBy('weight');
114 $dao->find();
115
116 while ($dao->fetch()) {
117 $membershipType[$dao->id] = array();
118 CRM_Core_DAO::storeValues($dao, $membershipType[$dao->id]);
119
120 $membershipType[$dao->id]['period_type'] = CRM_Utils_Array::value($dao->period_type, CRM_Core_SelectValues::periodType(), '');
121 $membershipType[$dao->id]['visibility'] = CRM_Utils_Array::value($dao->visibility, CRM_Core_SelectValues::memberVisibility(), '');
122
123 //adding column for relationship type label. CRM-4178.
124 if ($dao->relationship_type_id) {
125 //If membership associated with 2 or more relationship then display all relationship with comma separated
126 $relTypeIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $dao->relationship_type_id);
127 $relTypeNames = explode(CRM_Core_DAO::VALUE_SEPARATOR, $dao->relationship_direction);
128 $membershipType[$dao->id]['relationshipTypeName'] = NULL;
129 foreach ($relTypeIds as $key => $value) {
130 $relationshipName = 'label_' . $relTypeNames[$key];
131 if ($membershipType[$dao->id]['relationshipTypeName']) {
132 $membershipType[$dao->id]['relationshipTypeName'] .= ", ";
133 }
134 $membershipType[$dao->id]['relationshipTypeName'] .= CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType',
135 $value, $relationshipName
136 );
137 }
138 $membershipType[$dao->id]['maxRelated'] = CRM_Utils_Array::value('max_related', $membershipType[$dao->id]);
139 }
140 // form all action links
141 $action = array_sum(array_keys($this->links()));
142
143 // update enable/disable links depending on if it is is_reserved or is_active
144 if (!isset($dao->is_reserved)) {
145 if ($dao->is_active) {
146 $action -= CRM_Core_Action::ENABLE;
147 }
148 else {
149 $action -= CRM_Core_Action::DISABLE;
150 }
151 $membershipType[$dao->id]['order'] = $membershipType[$dao->id]['weight'];
152 $membershipType[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
153 array('id' => $dao->id),
154 ts('more'),
155 FALSE,
156 'membershipType.manage.action',
157 'MembershipType',
158 $dao->id
159 );
160 }
161 }
162
163 $returnURL = CRM_Utils_System::url('civicrm/admin/member/membershipType', "reset=1&action=browse");
164 CRM_Utils_Weight::addOrder($membershipType, 'CRM_Member_DAO_MembershipType',
165 'id', $returnURL
166 );
167
168 CRM_Member_BAO_MembershipType::convertDayFormat($membershipType);
169 $this->assign('rows', $membershipType);
170 }
171
172 }