Merge pull request #2061 from civicrm/4.3
[civicrm-core.git] / CRM / Member / Page / UserDashboard.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 * This class is for building membership block on user dashboard
38 */
39 class 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 }
64 if (CRM_Utils_Array::value('is_current_member', $statusANDType[$dao->id])) {
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) {
75 $membership[$dao->id]['renewPageId'] = $defaultRenewPageId;
76 }
77 }
78 }
79
80 $activeMembers = CRM_Member_BAO_Membership::activeMembers($membership);
81 $inActiveMembers = CRM_Member_BAO_Membership::activeMembers($membership, 'inactive');
82
83 $this->assign('activeMembers', $activeMembers);
84 $this->assign('inActiveMembers', $inActiveMembers);
85 }
86
87 /**
88 * This function is the main function that is called when the page
89 * loads, it decides the which action has to be taken for the page.
90 *
91 * return null
92 * @access public
93 */
94 function run() {
95 parent::preProcess();
96 $this->listMemberships();
97 }
98 }
99