egroupware/admin/newapplication.php

76 lines
3.2 KiB
PHP
Raw Normal View History

2000-08-19 16:22:09 +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$ */
$phpgw_info = array();
$phpgw_info["flags"] = array("currentapp" => "admin", "noheader" => True, "nonavbar" => True);
2000-08-19 16:22:09 +02:00
include("../header.inc.php");
2000-11-07 21:37:02 +01:00
//$phpgw->template->set_unknowns("remove");
$phpgw->template->set_file(array("form" => "application_form.tpl"));
2000-08-19 16:49:32 +02:00
if ($submit) {
2000-11-22 07:26:44 +01:00
$totalerrors = 0;
$phpgw->db->query("select count(*) from applications where app_name='"
. addslashes($n_app_name) . "'",__LINE__,__FILE__);
$phpgw->db->next_record();
if ($phpgw->db->f(0) != 0) {
2000-11-22 07:26:44 +01:00
$error[$totalerrors++] = lang("That application name already exsists.");
}
if (! $n_app_name)
2000-11-22 07:26:44 +01:00
$error[$totalerrors++] = lang("You must enter an application name.");
if (! $n_app_title)
2000-11-22 07:26:44 +01:00
$error[$totalerrors++] = lang("You must enter an application title.");
2000-11-22 07:26:44 +01:00
if (! $totalerrors) {
2000-08-19 16:49:32 +02:00
$phpgw->db->query("insert into applications (app_name,app_title,app_enabled) values('"
. addslashes($n_app_name) . "','" . addslashes($n_app_title) . "',"
. "$n_app_status)",__LINE__,__FILE__);
2000-08-19 16:49:32 +02:00
Header("Location: " . $phpgw->link("applications.php"));
exit;
} else {
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("error","<p><center>" . $phpgw->common->error_list($error) . "</center><br>");
2000-08-19 16:49:32 +02:00
}
} else { // else submit
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("error","");
2000-08-19 16:49:32 +02:00
}
$phpgw->common->phpgw_header();
$phpgw->common->navbar();
2000-08-19 16:49:32 +02:00
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_header",lang("Add new application"));
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("hidden_vars","");
$phpgw->template->set_var("form_action",$phpgw->link("newapplication.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_status",lang("Status"));
2000-11-07 21:37:02 +01:00
$phpgw->template->set_var("lang_submit_button",lang("add"));
2000-08-19 16:22:09 +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_value);
$selected[$n_app_status] = " selected";
$status_html = '<option value="0"' . $selected[0] . '>' . lang("Disabled") . '</option>'
2000-11-22 05:18:29 +01:00
. '<option value="1"' . $selected[1] . '>' . lang("Enabled") . '</option>'
. '<option value="2"' . $selected[2] . '>' . lang("Enabled - Hidden from navbar") . '</option>';
$phpgw->template->set_var("select_status",$status_html);
2000-11-07 21:37:02 +01:00
$phpgw->template->pparse("out","form");
2000-08-19 16:22:09 +02:00
$phpgw->common->phpgw_footer();
2000-09-25 23:13:52 +02:00
?>