summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 723345f)
raw | patch | inline | side by side (parent: 723345f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 5 Aug 2010 09:05:33 +0000 (09:05 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 5 Aug 2010 09:05:33 +0000 (09:05 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19364 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/generic/dashBoard/dbChannelStatus/class_dbChannelStatus.inc | patch | blob | history | |
gosa-core/plugins/generic/dashBoard/dbChannelStatus/contents.tpl | patch | blob | history |
diff --git a/gosa-core/plugins/generic/dashBoard/dbChannelStatus/class_dbChannelStatus.inc b/gosa-core/plugins/generic/dashBoard/dbChannelStatus/class_dbChannelStatus.inc
index 394b5b187a347db75a912fd0a66f2ba1073bbf18..eec7eb5c7fc3af6c11106858b556c7f5e5f568ea 100644 (file)
<?php
-
-
-
class dbChannelStatus extends plugin
{
-
- var $receivedStats = array();
-
function __construct($config)
{
parent::__construct($config, NULL);
function execute()
{
- // Transmit daily statistics to GOsa-Server
- if(isset($_POST['transmitStatistics'])){
-
- // First try to retrieve values via RPC
- if ($this->config->get_cfg_value("core","gosaRpcServer") != ""){
- $tmp = stats::dumpTables();
- $dump = array();
- foreach($tmp as $entry){
- $dump[] = array_values($entry);
- }
-
- $rpc = $this->config->getRpcHandle(
- "http://10.3.64.59:4000",
- "65717fe6-9e3e-11df-b010-5452005f1250",
- "WyukwauWoid2",
- TRUE);
- $rpc->updateInstanceStatus($dump);
- if(!$rpc->success()){
- msg_dialog::display(_("Error"),msgPool::rpcError($rpc->get_error()),ERROR_DIALOG);
- }
- }
- }
-
- // Transmit daily statistics to GOsa-Server
- if(isset($_POST['receiveStatistics'])){
-
- // First try to retrieve values via RPC
- if ($this->config->get_cfg_value("core","gosaRpcServer") != ""){
- $rpc = $this->config->getRpcHandle(
- "http://10.3.64.59:4000",
- "65717fe6-9e3e-11df-b010-5452005f1250",
- "WyukwauWoid2",
- TRUE);
- $res = $rpc->getInstanceStats();
- if(!$rpc->success()){
- msg_dialog::display(_("Error"),msgPool::rpcError($rpc->get_error()),ERROR_DIALOG);
- }
-
- $all = array_sum($res['category_count']);
- $tmp = array();
- $tmpRendered = array();
- foreach($res['category_count'] as $category => $count){
- $tmp[$category] = floor(($count / $all) * 10000) / 100;
- $tmpRendered[$category] = progressbar($tmp[$category]);
- }
- $this->receivedStats = $tmpRendered;
- }
- }
-
-
-
-
$smarty = get_smarty();
- $smarty->assign("receivedStats",$this->receivedStats);
-
$channel = array();
$channel[] = array(
'icon' => image('images/true.png'),
diff --git a/gosa-core/plugins/generic/dashBoard/dbChannelStatus/contents.tpl b/gosa-core/plugins/generic/dashBoard/dbChannelStatus/contents.tpl
index a95cd208b913967b6455f652e4827815f4a8f9c1..1b1de976ff5c73b5f28cd7abcad384d507e80e19 100644 (file)
-<h3>{t}Transmit daliy stats{/t}
-
-<button name='transmitStatistics'>{t}Send{/t}</button>
-<button name='receiveStatistics'>{t}Receive{/t}</button>
-
-{if $receivedStats}
- <h3>{t}Transmit daliy stats{/t}</h3>
- <table summary="{t}Generated usage statistics{/t}">
- {foreach from=$receivedStats key=key item=item}
- <tr>
- <td>{$key}</td>
- <td>{$item}</td>
- </tr>
- {/foreach}
- </table>
-{/if}
-
-<hr>
-
<h3>{t}Channels{/t}</h3>
{$channelList}