Code

Added memory usage chart
[gosa.git] / gosa-core / plugins / generic / statistics / statistics.tpl
index 0d9d4ba1796acf1b76e526491625dbd1b58b599d..50801a60ff3483f3d4c4a838b738e4483f72ae34 100644 (file)
@@ -1,10 +1,11 @@
+
 <h3>{t}Usage statistics{/t}</h3>
 
 {if !$rpcConfigured}
 
     {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}
 
-{else if !$validRpcHandle}
+{else if !$validRpcHandle || $rpcHandle_Error}
 
     {t}Communication with the GOsa-backend failed. Please check the rpc configuration!{/t}
 
     </table>
     <hr>
 
-    {if $graphID_1}
-        <img src='plugins/statistics/getGraph.php?id={$graphID_1}'>
+    <table>
+        <tr>
+            <td>
+                {if isset($graphIDs.1) && $graphIDs.1}
+                    <img src='plugins/statistics/getGraph.php?id={$graphIDs.1}'>
+                {/if}
+            </td>
+            <td>
+                {if isset($graphIDs.7) && $graphIDs.7}
+                    <img src='plugins/statistics/getGraph.php?id={$graphIDs.7}'>
+                {/if}
+            </td>
+        </tr>
+    </table>
+
+    {if isset($curGraphID) && $curGraphID}
+    
+        <select name='selectedGraphType' onChange="document.mainform.submit();">
+            {html_options options=$availableGraphs selected=$selectedGraphType}
+        </select>
+    
+        <hr>
+        <table>
+            <tr>
+                <td>
+                    <input type='hidden' name='currentGraphPosted' value='1'>
+                    <img src='plugins/statistics/getGraph.php?id={$curGraphID}'>
+                </td>
+            </tr>
+            <tr>
+                <td>
+                    {$curSeriesSelector}
+                </td>
+            </tr>
+        </table>
     {/if}
-    {if $graphID_2}
-        <img src='plugins/statistics/getGraph.php?id={$graphID_2}'>
+
+
+    {if isset($graphIDs.3) && $graphIDs.3}
+        <img src='plugins/statistics/getGraph.php?id={$graphIDs.3}'>
+        <hr>
     {/if}
-    {if $graphID_3}
-        <img src='plugins/statistics/getGraph.php?id={$graphID_3}'>
+    {if isset($graphIDs.4) && $graphIDs.4}
+        <img src='plugins/statistics/getGraph.php?id={$graphIDs.4}'>
+        <hr>
     {/if}
-    {if $graphID_4}
-        <img src='plugins/statistics/getGraph.php?id={$graphID_4}'>
+    {if isset($graphIDs.5) && $graphIDs.5}
+        <img src='plugins/statistics/getGraph.php?id={$graphIDs.5}'>
+        <hr>
     {/if}
-    {if $graphID_5}
-        <img src='plugins/statistics/getGraph.php?id={$graphID_5}'>
+    {if isset($graphIDs.6) && $graphIDs.6}
+        <img src='plugins/statistics/getGraph.php?id={$graphIDs.6}'>
+        <hr>
     {/if}
 
 {/if}