CRM-14831 check if membership type is present on contrib page to display renew link
[civicrm-core.git] / CRM / Member / Page / UserDashboard.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
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 * This class is for building membership block on user dashboard
38 */
39class CRM_Member_Page_UserDashboard extends CRM_Contact_Page_View_UserDashBoard {
40
41 /**
42 * Function to list memberships for the UF user
43 *
44 * return null
45 * @access public
46 */
47 function listMemberships() {
48 $membership = array();
49 $dao = new CRM_Member_DAO_Membership();
50 $dao->contact_id = $this->_contactId;
51 $dao->is_test = 0;
52 $dao->find();
53
54 while ($dao->fetch()) {
55 $membership[$dao->id] = array();
56 CRM_Core_DAO::storeValues($dao, $membership[$dao->id]);
57
58 //get the membership status and type values.
59 $statusANDType = CRM_Member_BAO_Membership::getStatusANDTypeValues($dao->id);
60 foreach (array(
61 'status', 'membership_type') as $fld) {
62 $membership[$dao->id][$fld] = CRM_Utils_Array::value($fld, $statusANDType[$dao->id]);
63 }
a7488080 64 if (!empty($statusANDType[$dao->id]['is_current_member'])) {
6a488035
TO
65 $membership[$dao->id]['active'] = TRUE;
66 }
67
68 $membership[$dao->id]['renewPageId'] = CRM_Member_BAO_Membership::getContributionPageId($dao->id);
69 if (!$membership[$dao->id]['renewPageId']) {
70 // Membership payment was not done via online contribution page or free membership. Check for default membership renewal page from CiviMember Settings
71 $defaultRenewPageId = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MEMBER_PREFERENCES_NAME,
72 'default_renewal_contribution_page'
73 );
74 if ($defaultRenewPageId) {
5a01772c
BS
75 //CRM-14831 - check if membership type is present in contrib page
76 $memBlock = CRM_Member_BAO_Membership::getMembershipBlock($defaultRenewPageId);
77 if ( !empty($memBlock['membership_types']) ) {
78 $memTypes = explode(',', $memBlock['membership_types']);
79 if ( in_array($dao->membership_type_id, $memTypes) ) {
80 $membership[$dao->id]['renewPageId'] = $defaultRenewPageId;
81 }
82 }
6a488035
TO
83 }
84 }
85 }
86
87 $activeMembers = CRM_Member_BAO_Membership::activeMembers($membership);
88 $inActiveMembers = CRM_Member_BAO_Membership::activeMembers($membership, 'inactive');
89
90 $this->assign('activeMembers', $activeMembers);
91 $this->assign('inActiveMembers', $inActiveMembers);
92 }
93
94 /**
95 * This function is the main function that is called when the page
96 * loads, it decides the which action has to be taken for the page.
97 *
98 * return null
99 * @access public
100 */
101 function run() {
102 parent::preProcess();
103 $this->listMemberships();
104 }
105}
106