translation->add_app('infolog'); $app_id = $GLOBALS['phpgw']->applications->name2id('infolog'); $GLOBALS['portal_order'][] = $app_id; $infolog = CreateObject('infolog.uiinfolog'); $html = $infolog->index(array('nm' => array('filter' => 'own-open-today')),'','',0,False,True); $title = lang('InfoLog').' - '.lang($infolog->filters['own-open-today']); $stable = $infolog->tmpl->stable; unset($infolog); if ($stable) // .14/6 { $portalbox = CreateObject('phpgwapi.listbox',array( 'title' => $title, 'primary' => $GLOBALS['phpgw_info']['theme']['navbar_bg'], 'secondary' => $GLOBALS['phpgw_info']['theme']['navbar_bg'], 'tertiary' => $GLOBALS['phpgw_info']['theme']['navbar_bg'], 'width' => '100%', 'outerborderwidth' => '0', 'header_background_image' => $GLOBALS['phpgw']->common->image('phpgwapi/templates/default','bg_filler') )); foreach(array( 'up' => Array('url' => '/set_box.php', 'app' => $app_id), 'down' => Array('url' => '/set_box.php', 'app' => $app_id), 'close' => Array('url' => '/set_box.php', 'app' => $app_id), 'question' => Array('url' => '/set_box.php', 'app' => $app_id), 'edit' => Array('url' => '/set_box.php', 'app' => $app_id) ) as $key => $value) { $portalbox->set_controls($key,$value); } $portalbox->data = $data; echo "\n\n".$portalbox->draw($html)."\n\n"; unset($portalbox); } else // HEAD / XSLT { $GLOBALS['phpgw']->portalbox->set_params(array( 'app_id' => $app_id, 'title' => $title )); $GLOBALS['phpgw']->portalbox->draw($html); } unset($html); $GLOBALS['phpgw_info']['flags']['currentapp'] = $save_app; } ?>