summaryrefslogtreecommitdiffstats
path: root/application/controllers/StatsController.php
diff options
context:
space:
mode:
authormichael pereira2011-03-25 17:24:17 +0100
committermichael pereira2011-03-25 17:24:17 +0100
commit9615b25b5afd08263a09ae9ef71daeb9e545b6e5 (patch)
tree98ccbd71450ca558bb4ebddeef5845b562e53fd8 /application/controllers/StatsController.php
parentfixes (diff)
parentgruppengraph nach einloggen in /user/ (diff)
downloadpbs2-9615b25b5afd08263a09ae9ef71daeb9e545b6e5.tar.gz
pbs2-9615b25b5afd08263a09ae9ef71daeb9e545b6e5.tar.xz
pbs2-9615b25b5afd08263a09ae9ef71daeb9e545b6e5.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/controllers/StatsController.php')
-rw-r--r--application/controllers/StatsController.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/application/controllers/StatsController.php b/application/controllers/StatsController.php
new file mode 100644
index 0000000..024eacd
--- /dev/null
+++ b/application/controllers/StatsController.php
@@ -0,0 +1,28 @@
+<?php
+
+class StatsController extends Zend_Controller_Action
+{
+
+ public function init()
+ {
+ $this->_helper->layout->disableLayout();
+ $this->_helper->viewRenderer->setNoRender();
+ }
+
+ public function graphgroupAction(){
+
+ $userIDsNamespace = Zend_Session::namespaceGet('userIDs');
+
+ if($userIDsNamespace['groupID'] !=''){
+ header("Content-Type: image/png");
+
+ $n = new Pbs_Graph();
+ $str = 'echo "';
+ $str .= $n->graph($userIDsNamespace['groupID']);
+ $str .= '" | dot -Tpng ';
+
+ passthru($str);
+ }
+ }
+}
+