"admin", "enable_nextmatchs_class" => True);
include("../header.inc.php");
$phpgw->template->set_file(array("list" => "applications.tpl",
"row" => "applications_row.tpl"));
if ($order) {
$ordermethod = "order by $order $sort";
} else {
$ordermethod = "order by app_title asc";
}
if (! $sort) {
$sort = "desc";
}
$phpgw->template->set_var("lang_installed",lang("Installed applications"));
$phpgw->template->set_var("bg_color",$phpgw_info["theme"]["bg_color"]);
$phpgw->template->set_var("th_bg",$phpgw_info["theme"]["th_bg"]);
$phpgw->template->set_var("sort_title",$phpgw->nextmatchs->show_sort_order($sort,"app_title",$order,"applications.php",lang("title")));
$phpgw->template->set_var("lang_edit",lang("Edit"));
$phpgw->template->set_var("lang_delete",lang("Delete"));
$phpgw->template->set_var("lang_enabled",lang("Enabled"));
$phpgw->db->query("select * from phpgw_applications $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 = " ";
$phpgw->template->set_var("tr_color",$tr_color);
$phpgw->template->set_var("name",$name);
$phpgw->template->set_var("edit",'db->f("app_name"))) . '"> ' . lang("Edit") . ' ');
$phpgw->template->set_var("delete",'db->f("app_name"))) . '"> ' . lang("Delete") . ' ');
if ($phpgw->db->f("app_enabled") != 0) {
$status = lang("Yes");
} else {
$status = "" . lang("No") . "";
}
$phpgw->template->set_var("status",$status);
$phpgw->template->parse("rows","row",True);
}
$phpgw->template->set_var("new_action",$phpgw->link("newapplication.php"));
$phpgw->template->set_var("lang_add",lang("add"));
$phpgw->template->pparse("out","list");
$phpgw->common->phpgw_footer();
?>