Merge pull request #6045 from AronNovak/CMSUser
[civicrm-core.git] / CRM / Pledge / Page / UserDashboard.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 class CRM_Pledge_Page_UserDashboard extends CRM_Contact_Page_View_UserDashBoard {
36
37 /**
38 * called when action is browse.
39 *
40 */
41 public function listPledges() {
42 $controller = new CRM_Core_Controller_Simple(
43 'CRM_Pledge_Form_Search',
44 ts('Pledges'),
45 NULL,
46 FALSE, FALSE, TRUE, FALSE
47 );
48 $controller->setEmbedded(TRUE);
49 $controller->reset();
50 $controller->set('limit', 12);
51 $controller->set('cid', $this->_contactId);
52 $controller->set('context', 'user');
53 $controller->set('force', 1);
54 $controller->process();
55 $controller->run();
56
57 //add honor block.
58 $honorParams = array();
59 $honorParams = CRM_Pledge_BAO_Pledge::getHonorContacts($this->_contactId);
60 if (!empty($honorParams)) {
61 // assign vars to templates
62 $this->assign('pledgeHonorRows', $honorParams);
63 $this->assign('pledgeHonor', TRUE);
64 }
65 $session = CRM_Core_Session::singleton();
66 $loggedUserID = $session->get('userID');
67 $this->assign('loggedUserID', $loggedUserID);
68 }
69
70 /**
71 * the main function that is called when the page
72 * loads, it decides the which action has to be taken for the page.
73 *
74 */
75 public function run() {
76 parent::preProcess();
77 $this->listPledges();
78 }
79
80 }