summaryrefslogtreecommitdiffstats
path: root/application/modules/user/controllers/IndexController.php
diff options
context:
space:
mode:
authormichael pereira2011-03-22 12:33:04 +0100
committermichael pereira2011-03-22 12:33:04 +0100
commit24635afb8e43dde32ae6894d75f737327364d5d5 (patch)
treeff44af5399a36a40ab29ba11508838897aca3d44 /application/modules/user/controllers/IndexController.php
parentBootiso & Preboot update (diff)
parentFBGui nutzt nun Session bzw Cookies (diff)
downloadpbs2-24635afb8e43dde32ae6894d75f737327364d5d5.tar.gz
pbs2-24635afb8e43dde32ae6894d75f737327364d5d5.tar.xz
pbs2-24635afb8e43dde32ae6894d75f737327364d5d5.zip
fbgui index merge
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']));
}
}