Merge pull request #15590 from alifrumin/subjecthelp
[civicrm-core.git] / CRM / Member / Page / UserDashboard.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
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 /**
fe482240 42 * List memberships for the UF user.
6a488035 43 *
6a488035 44 */
00be9182 45 public function listMemberships() {
be2fb01f 46 $membership = [];
353ffa53 47 $dao = new CRM_Member_DAO_Membership();
6a488035 48 $dao->contact_id = $this->_contactId;
353ffa53 49 $dao->is_test = 0;
6a488035
TO
50 $dao->find();
51
52 while ($dao->fetch()) {
be2fb01f 53 $membership[$dao->id] = [];
6a488035
TO
54 CRM_Core_DAO::storeValues($dao, $membership[$dao->id]);
55
56 //get the membership status and type values.
57 $statusANDType = CRM_Member_BAO_Membership::getStatusANDTypeValues($dao->id);
be2fb01f 58 foreach ([
c5c263ca
AH
59 'status',
60 'membership_type',
be2fb01f 61 ] as $fld) {
6a488035
TO
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
aaffa79f 71 $defaultRenewPageId = Civi::settings()->get('default_renewal_contribution_page');
6a488035 72 if ($defaultRenewPageId) {
5a01772c
BS
73 //CRM-14831 - check if membership type is present in contrib page
74 $memBlock = CRM_Member_BAO_Membership::getMembershipBlock($defaultRenewPageId);
481a74f4 75 if (!empty($memBlock['membership_types'])) {
5a01772c 76 $memTypes = explode(',', $memBlock['membership_types']);
481a74f4 77 if (in_array($dao->membership_type_id, $memTypes)) {
5a01772c
BS
78 $membership[$dao->id]['renewPageId'] = $defaultRenewPageId;
79 }
80 }
6a488035
TO
81 }
82 }
83 }
84
85 $activeMembers = CRM_Member_BAO_Membership::activeMembers($membership);
86 $inActiveMembers = CRM_Member_BAO_Membership::activeMembers($membership, 'inactive');
87
88 $this->assign('activeMembers', $activeMembers);
89 $this->assign('inActiveMembers', $inActiveMembers);
90 }
91
92 /**
dc195289 93 * the main function that is called when the page
6a488035
TO
94 * loads, it decides the which action has to be taken for the page.
95 *
6a488035 96 */
00be9182 97 public function run() {
6a488035
TO
98 parent::preProcess();
99 $this->listMemberships();
100 }
96025800 101
6a488035 102}