Merge pull request #13462 from greenpeace-cee/alter-indexes
[civicrm-core.git] / templates / CRM / Contribute / Form / ContributionCharts.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2019 |
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">
29 <table class="chart">
30 <tr class="crm-contribution-form-block-open_flash_chart">
31 <td>
32 {if $hasByMonthChart}
33 {* display monthly chart *}
34 <div id="open_flash_chart_by_month"></div>
35 {else}
36 {ts}There were no contributions during the selected year.{/ts}
37 {/if}
38 </td>
39 <td>
40 {* display yearly chart *}
41 <div id="open_flash_chart_by_year"></div>
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
57 {if $hasOpenFlashChart}
58 {include file="CRM/common/openFlashChart.tpl" contriChart=true}
59
60 {literal}
61 <script type="text/javascript">
62
63 CRM.$(function($) {
64 var chartData = {/literal}{$openFlashChartData}{literal};
65 $.each(chartData, function(chartID, chartValues) {
66 createSWFObject(chartID, chartValues.divName, chartValues.size.xSize, chartValues.size.ySize, 'loadData');
67 });
68 });
69
70 function loadData( chartID ) {
71 var allData = {/literal}{$openFlashChartData}{literal};
72 return JSON.stringify(allData[chartID].object);
73 }
74
75 function byMonthOnClick( barIndex ) {
76 var allData = {/literal}{$openFlashChartData}{literal};
77 var url = eval( "allData.by_month.on_click_urls.url_" + barIndex );
78 if ( url ) window.location.href = url;
79 }
80
81 function byYearOnClick( barIndex ) {
82 var allData = {/literal}{$openFlashChartData}{literal};
83 var url = eval( "allData.by_year.on_click_urls.url_" + barIndex );
84 if ( url ) window.location.href = url;
85 }
86
87 </script>
88 {/literal}
89 {/if}