Code

Updated stats
[gosa.git] / gosa-core / plugins / generic / statistics / statistics.tpl
1 <h3>{t}Usage statistics{/t}</h3>
3 {if !$rpcConfigured}
5     {t}This feature is disabled. To enable it you can use the GOsa properties plugin, just activate the remote procedure call (RPC) configuration flags.{/t}
7 {else if !$validRpcHandle || $rpcHandle_Error}
9     {t}Communication with the GOsa-backend failed. Please check the rpc configuration!{/t}
11 {else}
13     {if $unsbmittedFiles != 0}
14         {$unsbmittedFilesMsg}
15         <button name='transmitStatistics'>{t}Send{/t}</button>
16         <hr>
17     {/if}
19     <table>
20         <tr>
21             <td>{t}Generate report for{/t}</td>
22             <td style='width:220px;'>
23                  <input type="text" id="graph1DatePicker1" name="graph1DatePicker1" class="date" value="{$graph1DatePicker1}">
24                  <script type="text/javascript">
25                   {literal}
26                    var datepicker  = new DatePicker(
27                          { relative : 'graph1DatePicker1',
28                            language : '{/literal}{$lang}{literal}',
29                            keepFieldEmpty : true,
30                            enableCloseEffect : false,
31                            enableShowEffect : false });
32                   {/literal}
33                  </script>
34             </td>
35             <td> - </td>
36             <td style='width:220px;'>
37                 <input type="text" id="graph1DatePicker2" name="graph1DatePicker2" class="date" value="{$graph1DatePicker2}">
38                 <script type="text/javascript">
39                  {literal}
40                   var datepicker  = new DatePicker(
41                         { relative : 'graph1DatePicker2',
42                           language : '{/literal}{$lang}{literal}',
43                           keepFieldEmpty : true,
44                           enableCloseEffect : false,
45                           enableShowEffect : false });
46                  {/literal}
47                 </script>
48             </td>
49             <td>
50                 <button name='receiveStatistics'>{t}Receive{/t}</button>
51             </td>
52         </tr>
53     </table>
54     <hr>
56     {if isset($graphIDs.1) && $graphIDs.1}
57         <img src='plugins/statistics/getGraph.php?id={$graphIDs.1}'>
58     {/if}
60     <table>
61         <tr>
62             <td>
63                 {if isset($graphIDs.2) && $graphIDs.2}
64                     <img src='plugins/statistics/getGraph.php?id={$graphIDs.2}'>
65                     <input type='hidden' name='graphPosted_2' value='1'>
66                 {/if}
67             </td>
68             <td>
69                 {if isset($graphIDs.2) && $graphIDs.2}
70                     {foreach from=$seriesListPerGraph.2 key=key item=item}
71                         <input type='checkbox' name='addSeries_2_{$key}' value='1'
72                             onClick="document.mainform.submit();"
73                             {if !($key|in_array:$skipSeries.2)} checked {/if}>{$item}<br>
74                     {/foreach} 
75                 {/if}
76             </td>
77         </tr>
78     </table>
79     {if isset($graphIDs.3) && $graphIDs.3}
80         <img src='plugins/statistics/getGraph.php?id={$graphIDs.3}'>
81     {/if}
82     {if isset($graphIDs.4) && $graphIDs.4}
83         <img src='plugins/statistics/getGraph.php?id={$graphIDs.4}'>
84     {/if}
85     {if isset($graphIDs.5) && $graphIDs.5}
86         <img src='plugins/statistics/getGraph.php?id={$graphIDs.5}'>
87     {/if}
88     {if isset($graphIDs.6) && $graphIDs.6}
89         <img src='plugins/statistics/getGraph.php?id={$graphIDs.6}'>
90     {/if}
92 {/if}