Merge pull request #2597 from pratik-joshi/atif_work_on_fix_for_js_break
[civicrm-core.git] / CRM / Member / Page / MembershipType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
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 * @static
46 */
47 static $_links = NULL;
48
49 /**
50 * Get action Links
51 *
52 * @return array (reference) of action links
53 */
54 function &links() {
55 if (!(self::$_links)) {
56 self::$_links = array(
57 CRM_Core_Action::UPDATE => array(
58 'name' => ts('Edit'),
59 'url' => 'civicrm/admin/member/membershipType/add',
60 'qs' => 'action=update&id=%%id%%&reset=1',
61 'title' => ts('Edit Membership Type'),
62 ),
63 CRM_Core_Action::DISABLE => array(
64 'name' => ts('Disable'),
65 'ref' => 'crm-enable-disable',
66 'title' => ts('Disable Membership Type'),
67 ),
68 CRM_Core_Action::ENABLE => array(
69 'name' => ts('Enable'),
70 'ref' => 'crm-enable-disable',
71 'title' => ts('Enable Membership Type'),
72 ),
73 CRM_Core_Action::DELETE => array(
74 'name' => ts('Delete'),
75 'url' => 'civicrm/admin/member/membershipType/add',
76 'qs' => 'action=delete&id=%%id%%',
77 'title' => ts('Delete Membership Type'),
78 ),
79 );
80 }
81 return self::$_links;
82 }
83
84 /**
85 * Run the page.
86 *
87 * This method is called after the page is created. It checks for the
88 * type of action and executes that action.
89 * Finally it calls the parent's run method.
90 *
91 * @return void
92 * @access public
93 *
94 */
95 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 * @access public
108 * @static
109 */
110 function browse() {
111 CRM_Core_Resources::singleton()->addScriptFile('civicrm', 'js/crm.livePage.js');
112 // get all membership types sorted by weight
113 $membershipType = array();
114 $dao = new CRM_Member_DAO_MembershipType();
115
116 $dao->orderBy('weight');
117 $dao->find();
118
119
120 while ($dao->fetch()) {
121 $membershipType[$dao->id] = array();
122 CRM_Core_DAO::storeValues($dao, $membershipType[$dao->id]);
123
124 //adding column for relationship type label. CRM-4178.
125 if ($dao->relationship_type_id) {
126 //If membership associated with 2 or more relationship then display all relationship with comma separated
127 $relTypeIds = explode(CRM_Core_DAO::VALUE_SEPARATOR, $dao->relationship_type_id);
128 $relTypeNames = explode(CRM_Core_DAO::VALUE_SEPARATOR, $dao->relationship_direction);
129 $membershipType[$dao->id]['relationshipTypeName'] = NULL;
130 foreach ($relTypeIds as $key => $value) {
131 $relationshipName = 'label_' . $relTypeNames[$key];
132 if ($membershipType[$dao->id]['relationshipTypeName']) {
133 $membershipType[$dao->id]['relationshipTypeName'] .= ", ";
134 }
135 $membershipType[$dao->id]['relationshipTypeName'] .= CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_RelationshipType',
136 $value, $relationshipName
137 );
138 }
139 $membershipType[$dao->id]['maxRelated'] = CRM_Utils_Array::value('max_related', $membershipType[$dao->id]);
140 }
141 // form all action links
142 $action = array_sum(array_keys($this->links()));
143
144 // update enable/disable links depending on if it is is_reserved or is_active
145 if (!isset($dao->is_reserved)) {
146 if ($dao->is_active) {
147 $action -= CRM_Core_Action::ENABLE;
148 }
149 else {
150 $action -= CRM_Core_Action::DISABLE;
151 }
152 $membershipType[$dao->id]['order'] = $membershipType[$dao->id]['weight'];
153 $membershipType[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
154 array('id' => $dao->id),
155 ts('more'),
156 FALSE,
157 'membershipType.manage.action',
158 'MembershipType',
159 $dao->id
160 );
161 }
162 }
163
164 $returnURL = CRM_Utils_System::url('civicrm/admin/member/membershipType', "reset=1&action=browse");
165 CRM_Utils_Weight::addOrder($membershipType, 'CRM_Member_DAO_MembershipType',
166 'id', $returnURL
167 );
168
169 CRM_Member_BAO_MembershipType::convertDayFormat($membershipType);
170 $this->assign('rows', $membershipType);
171 }
172 }
173