Update copyright date for 2020
[civicrm-core.git] / templates / CRM / Contribute / Form / ContributionCharts.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
6a488035 4 +--------------------------------------------------------------------+
f299f7db 5 | Copyright CiviCRM LLC (c) 2004-2020 |
6a488035
TO
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26{* Display monthly and yearly contributions using Google charts (Bar and Pie) *}
27{if $hasContributions}
28<div id="chartData">
f648602a
RLAR
29<table >
30 <tr class="crm-contribution-form-block-chart">
31 <td width="50%">
6a488035
TO
32 {if $hasByMonthChart}
33 {* display monthly chart *}
f648602a 34 <div id="chart_by_month"></div>
6a488035
TO
35 {else}
36 {ts}There were no contributions during the selected year.{/ts}
37 {/if}
38 </td>
f648602a 39 <td width="50%">
6a488035 40 {* display yearly chart *}
f648602a 41 <div id="chart_by_year"></div>
6a488035
TO
42 </td>
43 </tr>
44</table>
45<div class="form-layout-compressed" >
46<table >
47 <td class="label">{$form.select_year.label}</td><td>{$form.select_year.html}</td>
48 <td class="label">{$form.chart_type.label}</td><td>{$form.chart_type.html}</td>
49</table>
50</div>
51{else}
52 <div class="messages status no-popup">
53 {ts}There are no live contribution records to display.{/ts}
54 </div>
55{/if}
56
dc61ee93
RLAR
57{if $hasChart}
58{include file="CRM/common/chart.tpl" contriChart=true}
6a488035
TO
59
60{literal}
61<script type="text/javascript">
62
3cc60a06 63 CRM.$(function($) {
f648602a 64 var allData = {/literal}{$chartData}{literal};
6a488035 65
f648602a
RLAR
66 $.each( allData, function( chartID, chartValues ) {
67 var divName = "chart_" + chartID;
68 createChart( chartID, divName, 300, 300, allData[chartID].object );
69 });
6a488035 70
f648602a
RLAR
71 function byMonthOnClick( barIndex ) {
72 var url = allData.by_month.on_click_urls['url_' + barIndex];
73 if ( url ) window.location.href = url;
74 }
6a488035 75
f648602a
RLAR
76 function byYearOnClick( barIndex ) {
77 var url = allData.by_year.on_click_urls['url_' + barIndex];
78 if ( url ) window.location.href = url;
79 }
6a488035 80
f648602a
RLAR
81 });
82</script>
6a488035
TO
83{/literal}
84{/if}