commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / templates / CRM / Contribute / Form / ContributionCharts.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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 buildChart( );
65 });
66
67 function buildChart( ) {
68 var chartData = {/literal}{$openFlashChartData}{literal};
69 cj.each( chartData, function( chartID, chartValues ) {
70
71 var xSize = eval( "chartValues.size.xSize" );
72 var ySize = eval( "chartValues.size.ySize" );
73 var divName = eval( "chartValues.divName" );
74
75 createSWFObject( chartID, divName, xSize, ySize, 'loadData' );
76 });
77 }
78
79 function loadData( chartID ) {
80 var allData = {/literal}{$openFlashChartData}{literal};
81 var data = eval( "allData." + chartID + ".object" );
82 return JSON.stringify( data );
83 }
84
85 function byMonthOnClick( barIndex ) {
86 var allData = {/literal}{$openFlashChartData}{literal};
87 var url = eval( "allData.by_month.on_click_urls.url_" + barIndex );
88 if ( url ) window.location.href = url;
89 }
90
91 function byYearOnClick( barIndex ) {
92 var allData = {/literal}{$openFlashChartData}{literal};
93 var url = eval( "allData.by_year.on_click_urls.url_" + barIndex );
94 if ( url ) window.location.href = url;
95 }
96
97 </script>
98 {/literal}
99 {/if}