2000-08-19 16:51:27 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - administration *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
if ($submit) {
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
|
2000-08-19 16:51:27 +02:00
|
|
|
}
|
|
|
|
|
2000-09-25 23:13:52 +02:00
|
|
|
$phpgw_info["flags"]["disable_message_class"] = True;
|
|
|
|
$phpgw_info["flags"]["disable_send_class"] = True;
|
2000-09-05 20:36:13 +02:00
|
|
|
$phpgw_info["flags"]["currentapp"] = "admin";
|
2000-08-19 16:51:27 +02:00
|
|
|
include("../header.inc.php");
|
2000-08-20 04:56:02 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_file(array("form" => "application_form.tpl"));
|
2000-08-20 04:56:02 +02:00
|
|
|
|
2000-08-19 16:51:27 +02:00
|
|
|
if ($submit) {
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->templateotalerrors = 0;
|
2000-10-28 21:24:51 +02:00
|
|
|
|
|
|
|
if (! $n_app_name)
|
2000-11-07 21:37:02 +01:00
|
|
|
$error[$phpgw->templateotalerrors++] = lang("You must enter an application name.");
|
2000-10-28 21:24:51 +02:00
|
|
|
|
|
|
|
if (! $n_app_title)
|
2000-11-07 21:37:02 +01:00
|
|
|
$error[$phpgw->templateotalerrors++] = lang("You must enter an application title.");
|
2000-10-28 21:24:51 +02:00
|
|
|
|
|
|
|
if ($old_app_name != $n_app_name) {
|
|
|
|
$phpgw->db->query("select count(*) from applications where app_name='"
|
|
|
|
. addslashes($n_app_name) . "'");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
|
|
|
if ($phpgw->db->f(0) != 0) {
|
2000-11-07 21:37:02 +01:00
|
|
|
$error[$phpgw->templateotalerrors++] = lang("That application name already exsists.");
|
2000-10-28 21:24:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
if (! $phpgw->templateotalerrors) {
|
2000-08-19 16:51:27 +02:00
|
|
|
$phpgw->db->query("update applications set app_name='" . addslashes($n_app_name) . "',"
|
|
|
|
. "app_title='" . addslashes($n_app_title) . "', app_enabled='"
|
|
|
|
. "$n_app_enabled' where app_name='$old_app_name'");
|
|
|
|
|
|
|
|
Header("Location: " . $phpgw->link("applications.php"));
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$phpgw->db->query("select * from applications where app_name='$app_name'");
|
|
|
|
$phpgw->db->next_record();
|
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
if ($phpgw->templateotalerrors) {
|
2000-09-28 17:01:11 +02:00
|
|
|
$phpgw->common->phpgw_header();
|
2000-08-19 16:51:27 +02:00
|
|
|
$phpgw->common->navbar();
|
2000-08-20 04:56:02 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("error","<p><center>" . $phpgw->common->error_list($error) . "</center><br>");
|
2000-08-20 04:56:02 +02:00
|
|
|
} else {
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("error","");
|
2000-10-28 21:24:51 +02:00
|
|
|
|
|
|
|
$n_app_name = $phpgw->db->f("app_name");
|
|
|
|
$n_app_title = $phpgw->db->f("app_title");
|
|
|
|
$n_app_enabled = $phpgw->db->f("app_enabled");
|
|
|
|
$old_app_name = $phpgw->db->f("app_name");
|
2000-08-19 16:51:27 +02:00
|
|
|
}
|
2000-10-28 21:24:51 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("lang_header",lang("Edit application"));
|
|
|
|
$phpgw->template->set_var("hidden_vars",'<input type="hidden" name="old_app_name" value="' . $old_app_name . '">');
|
2000-08-19 16:51:27 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("form_action",$phpgw->link("editapplication.php"));
|
|
|
|
$phpgw->template->set_var("lang_app_name",lang("application name"));
|
|
|
|
$phpgw->template->set_var("lang_app_title",lang("application title"));
|
|
|
|
$phpgw->template->set_var("lang_enabled",lang("enabled"));
|
|
|
|
$phpgw->template->set_var("lang_submit_button",lang("edit"));
|
2000-08-19 16:51:27 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->set_var("app_name_value",$n_app_name);
|
|
|
|
$phpgw->template->set_var("app_title_value",$n_app_title);
|
|
|
|
$phpgw->template->set_var("app_enabled_checked",($n_app_enabled?" checked":""));
|
2000-08-19 16:51:27 +02:00
|
|
|
|
2000-11-07 21:37:02 +01:00
|
|
|
$phpgw->template->pparse("out","form");
|
2000-08-19 16:51:27 +02:00
|
|
|
|
2000-09-29 07:24:18 +02:00
|
|
|
$phpgw->common->phpgw_footer();
|
2000-09-25 23:13:52 +02:00
|
|
|
?>
|