. */ include("./include/include.php"); require_once(FILESYSTEMROOTPATH."jc/include/classes/DefaultLayout.php"); require_once(FILESYSTEMROOTPATH."include/list/ListPager.php"); $layout = new DefaultLayout(Access::VISITOR, "./jc/"); $layout->init(); $layout->AddJavascript('js/visibility.js'); $agora_id = $_SESSION['JC_MODULE']['AgoraId']; //$layout->echoln('

Other Votings (Reports, Motions, Roll-Calls)

'); $rService = $GLOBALS['ClassFactory']->getRollcallsService(); $data = $rService->loadPublicByAgora($agora_id); $pager = new ListPager("Other Votings (Reports, Motions, Roll-Calls)"); $pager->addColumn(new TextColumn('title', 'Title')); $pager->addColumn(new TextColumn('description','Description')); $layout->echoln($pager->display($data)); $layout->page_footer(); ?>