Merge pull request #13360 from ray-wright/patch-2
[civicrm-core.git] / CRM / Pledge / Page / DashBoard.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 */
33
34/**
cc28438b 35 * This page is for the Pledge Dashboard.
6a488035
TO
36 */
37class CRM_Pledge_Page_DashBoard extends CRM_Core_Page {
38
39 /**
167bcb5f 40 * Heart of the viewing process.
41 *
42 * The runner gets all the meta data for the contact and calls the appropriate type of page to view.
6a488035 43 */
00be9182 44 public function preProcess() {
6a488035
TO
45 CRM_Utils_System::setTitle(ts('CiviPledge'));
46
353ffa53
TO
47 $startToDate = array();
48 $yearToDate = array();
49 $monthToDate = array();
6a488035
TO
50 $previousToDate = array();
51
52 $prefixes = array('start', 'month', 'year', 'previous');
53 $status = array('Completed', 'Cancelled', 'Pending', 'In Progress', 'Overdue');
54
55 // cumulative (since inception) - prefix = 'start'
56 $startDate = NULL;
57 $startDateEnd = NULL;
58
59 // current year - prefix = 'year'
167bcb5f 60 $yearDate = \Civi::settings()->get('fiscalYearStart');
353ffa53 61 $year = array('Y' => date('Y'));
6a488035 62 $this->assign('curYear', $year['Y']);
353ffa53
TO
63 $yearDate = array_merge($year, $yearDate);
64 $yearDate = CRM_Utils_Date::format($yearDate);
65 $yearDate = $yearDate . '000000';
6a488035
TO
66 $yearDateEnd = $year['Y'] . '1231235959';
67
68 // current month - prefix = 'month'
69 $currentMonth = date("F Y", mktime(0, 0, 0, date("m"), 01, date("Y")));
70 $this->assign('currentMonthYear', $currentMonth);
71 $monthDate = date('Ym') . '01000000';
72 $monthDateEnd = CRM_Utils_Date::customFormat(date("Y-m-t", mktime(0, 0, 0, date("m"), 01, date("Y"))), '%Y%m%d') . '235959';
73
74 // previous month - prefix = 'previous'
353ffa53 75 $previousDate = CRM_Utils_Date::customFormat(date("Y-m-d", mktime(0, 0, 0, date("m") - 1, 01, date("Y"))), '%Y%m%d') . '000000';
6a488035 76 $previousDateEnd = CRM_Utils_Date::customFormat(date("Y-m-t", mktime(0, 0, 0, date("m") - 1, 01, date("Y"))), '%Y%m%d') . '235959';
353ffa53 77 $previousMonth = date("F Y", mktime(0, 0, 0, date("m") - 1, 01, date("Y")));
6a488035
TO
78 $this->assign('previousMonthYear', $previousMonth);
79
6a488035 80 foreach ($prefixes as $prefix) {
353ffa53 81 $aName = $prefix . 'ToDate';
6a488035 82 $startName = $prefix . 'Date';
353ffa53 83 $endName = $prefix . 'DateEnd';
6a488035
TO
84 foreach ($status as $s) {
85 ${$aName}[str_replace(" ", "", $s)] = CRM_Pledge_BAO_Pledge::getTotalAmountAndCount($s, $$startName, $$endName);
86 }
87 $this->assign($aName, $$aName);
88 }
89 }
90
91 /**
167bcb5f 92 * The main function that is called when the page loads.
93 *
cc28438b 94 * it decides which action has to be taken for the page.
6a488035 95 *
76e7a76c 96 * @return null
6a488035 97 */
00be9182 98 public function run() {
6a488035
TO
99 $this->preProcess();
100
101 $controller = new CRM_Core_Controller_Simple('CRM_Pledge_Form_Search',
102 ts('Pledge'),
103 NULL
104 );
105 $controller->setEmbedded(TRUE);
106 $controller->reset();
107 $controller->set('limit', 10);
108 $controller->set('force', 1);
109 $controller->set('context', 'dashboard');
110 $controller->process();
111 $controller->run();
112
113 return parent::run();
114 }
96025800 115
6a488035 116}