summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/IndexController.php
diff options
context:
space:
mode:
authorSimon2011-03-22 11:26:03 +0100
committerSimon2011-03-22 11:26:03 +0100
commit21fd2681fd6916154a2047c75fabb0e1b5bd09ba (patch)
treea69e5a0a7e133c05e09842faa5cee5f0ae8aca0c /application/modules/user/controllers/IndexController.php
parentfbgui oberfläche angepasst (diff)
downloadpbs2-21fd2681fd6916154a2047c75fabb0e1b5bd09ba.tar.gz
pbs2-21fd2681fd6916154a2047c75fabb0e1b5bd09ba.tar.xz
pbs2-21fd2681fd6916154a2047c75fabb0e1b5bd09ba.zip
Alle ParentGroups und alle ChildGroups einer Gruppe herausfinden
Diffstat (limited to 'application/modules/user/controllers/IndexController.php')
-rw-r--r--application/modules/user/controllers/IndexController.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/modules/user/controllers/IndexController.php b/application/modules/user/controllers/IndexController.php
index 8b295e0..74e1da7 100644
--- a/application/modules/user/controllers/IndexController.php
+++ b/application/modules/user/controllers/IndexController.php
@@ -22,6 +22,10 @@ class User_IndexController extends Zend_Controller_Action
);
}
$this->view->links = $links;
+
+ $ggMapper = new Application_Model_GroupGroupsMapper();
+ print_a('Your Parent Groups', $ggMapper->getParentGroups($_SESSION['membershipID']));
+ print_a('Your Child Groups',$ggMapper->getChildGroups($_SESSION['membershipID']));
}
}