Code

b9cd6bfb85d08bfd5c0d1f4628cb03dddefdbe12
[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     
57     <table>
58         <tr>
59             <td>
60                 {if isset($graphIDs.1) && $graphIDs.1}
61                     <img src='plugins/statistics/getGraph.php?id={$graphIDs.1}'>
62                 {/if}
63             </td>
64             <td>
65                 {if isset($graphIDs.7) && $graphIDs.7}
66                     <img src='plugins/statistics/getGraph.php?id={$graphIDs.7}'>
67                 {/if}
68             </td>
69         </tr>
70     </table>
72     <table>
73         <tr>
74             <td>
75                 {if isset($graphIDs.2) && $graphIDs.2}
76                     <img src='plugins/statistics/getGraph.php?id={$graphIDs.2}'>
77                     <input type='hidden' name='graphPosted_2' value='1'>
78                 {/if}
79             </td>
80             <td>
81                 {if isset($graphLegends.2) && $graphIDs.2}
82                     {$graphLegends.2}
83                 {/if}
84             </td>
85         </tr>
86     </table>
87     {if isset($graphIDs.3) && $graphIDs.3}
88         <img src='plugins/statistics/getGraph.php?id={$graphIDs.3}'>
89     {/if}
90     {if isset($graphIDs.4) && $graphIDs.4}
91         <img src='plugins/statistics/getGraph.php?id={$graphIDs.4}'>
92     {/if}
93     {if isset($graphIDs.5) && $graphIDs.5}
94         <img src='plugins/statistics/getGraph.php?id={$graphIDs.5}'>
95     {/if}
96     {if isset($graphIDs.6) && $graphIDs.6}
97         <img src='plugins/statistics/getGraph.php?id={$graphIDs.6}'>
98     {/if}
100 {/if}