'admin', 'enable_nextmatchs_class' => True ); include('../header.inc.php'); $p = CreateObject('phpgwapi.Template',PHPGW_APP_TPL); $p->set_file(array('applications' => 'applications.tpl')); $p->set_block('applications','list','list'); $p->set_block('applications','row','row'); if ($order) { $ordermethod = "ORDER BY $order $sort"; } else { $ordermethod = "ORDER BY app_title ASC"; } if (!$sort) { $sort = "DESC"; } $p->set_var('lang_installed',lang('Installed applications')); $p->set_var('bg_color',$phpgw_info['theme']['bg_color']); $p->set_var('th_bg',$phpgw_info['theme']['th_bg']); $p->set_var('sort_title',$phpgw->nextmatchs->show_sort_order($sort,"app_title",$order,"/admin/applications.php",lang('title'))); $p->set_var('lang_edit',lang('Edit')); $p->set_var('lang_delete',lang('Delete')); $p->set_var('lang_enabled',lang('Enabled')); $phpgw->db->query("SELECT * FROM phpgw_applications WHERE app_enabled!='3' $ordermethod",__LINE__,__FILE__); while ($phpgw->db->next_record()) { $tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color); $name = $phpgw->db->f("app_title"); if (! $phpgw->db->f('app_title')) $name = $phpgw->db->f('app_name'); if (! $name) $name = " "; $p->set_var('tr_color',$tr_color); $p->set_var('name',$name); $p->set_var('edit',' ' . lang('Edit') . ' '); $p->set_var('delete',' ' . lang('Delete') . ' '); if ($phpgw->db->f('app_enabled') != 0) { $status = lang('Yes'); } else { $status = "" . lang('No') . ""; } $p->set_var('status',$status); $p->parse('rows','row',True); } $p->set_var('new_action',$phpgw->link('/admin/newapplication.php')); $p->set_var('lang_add',lang('add')); $p->pparse('out','list'); $phpgw->common->phpgw_footer(); ?>