Merge pull request #1051 from yashodha/hooks
[civicrm-core.git] / CRM / Contribute / Page / DashBoard.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
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 * Page for displaying list of Payment-Instrument
38 */
39class CRM_Contribute_Page_DashBoard extends CRM_Core_Page {
40
41 /**
42 * Heart of the viewing process. The runner gets all the meta data for
43 * the contact and calls the appropriate type of page to view.
44 *
45 * @return void
46 * @access public
47 *
48 */
49 function preProcess() {
50 CRM_Utils_System::setTitle(ts('CiviContribute'));
51
52 $status = array('Valid', 'Cancelled');
53 $prefixes = array('start', 'month', 'year');
54 $startDate = NULL;
55 $startToDate = $monthToDate = $yearToDate = array();
56
57 //get contribution dates.
58 $dates = CRM_Contribute_BAO_Contribution::getContributionDates();
59 foreach (array(
60 'now', 'yearDate', 'monthDate') as $date) {
61 $$date = $dates[$date];
62 }
63 $yearNow = $yearDate + 10000;
64 foreach ($prefixes as $prefix) {
65 $aName = $prefix . 'ToDate';
66 $dName = $prefix . 'Date';
67
68 if ($prefix == 'year') {
69 $now = $yearNow;
70 }
71
72 foreach ($status as $s) {
73 ${$aName}[$s] = CRM_Contribute_BAO_Contribution::getTotalAmountAndCount($s, $$dName, $now);
74 ${$aName}[$s]['url'] = CRM_Utils_System::url('civicrm/contribute/search',
75 "reset=1&force=1&status=1&start={$$dName}&end=$now&test=0"
76 );
77 }
78
79 $this->assign($aName, $$aName);
80 }
81
82 //for contribution tabular View
83 $buildTabularView = CRM_Utils_Array::value('showtable', $_GET, FALSE);
84 $this->assign('buildTabularView', $buildTabularView);
85 if ($buildTabularView) {
86 return;
87 }
88
89 // Check for admin permission to see if we should include the Manage Contribution Pages action link
90 $isAdmin = 0;
91 if (CRM_Core_Permission::check('administer CiviCRM')) {
92 $isAdmin = 1;
93 }
94 $this->assign('isAdmin', $isAdmin);
95 }
96
97 /**
98 * This function is the main function that is called when the page loads,
99 * it decides the which action has to be taken for the page.
100 *
101 * return null
102 * @access public
103 */
104 function run() {
105 $this->preProcess();
106
107 $controller = new CRM_Core_Controller_Simple('CRM_Contribute_Form_Search',
108 ts('Contributions'), NULL
109 );
110 $controller->setEmbedded(TRUE);
111
112 $controller->set('limit', 10);
113 $controller->set('force', 1);
114 $controller->set('context', 'dashboard');
115 $controller->process();
116 $controller->run();
117 $chartForm = new CRM_Core_Controller_Simple('CRM_Contribute_Form_ContributionCharts',
118 ts('Contributions Charts'), NULL
119 );
120
121 $chartForm->setEmbedded(TRUE);
122 $chartForm->process();
123 $chartForm->run();
4265dd23 124 CRM_Core_Resources::singleton()->addScriptFile('civicrm', 'templates/CRM/Contribute/Page/DashBoard.js');
6a488035
TO
125
126 return parent::run();
127 }
128}
129