egroupware/admin/deletecategory.php

68 lines
2.9 KiB
PHP
Raw Normal View History

2001-03-25 04:35:39 +02:00
<?php
/**************************************************************************\
* phpGroupWare - Admin *
* (http://www.phpgroupware.org) *
* Written by Bettina Gille [ceb@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 ($confirm) {
$phpgw_info["flags"] = array('noheader' => True,
'nonavbar' => True);
}
$phpgw_info["flags"]["currentapp"] = 'admin';
include('../header.inc.php');
$c = CreateObject('phpgwapi.categories');
$c->categories($phpgw_info['user']['account_id'],'phpgw');
if (! $cat_id) {
Header('Location: ' . $phpgw->link('/admin/categories.php'));
}
if ($confirm) {
if ($subs) { $c->delete($cat_id,'True'); }
else { $c->delete($cat_id); }
Header('Location: ' . $phpgw->link('/admin/categories.php',"start=$start&query=$query&sort=$sort&order=$order&filter=$filter"));
2001-03-25 04:35:39 +02:00
}
else {
$hidden_vars = "<input type=\"hidden\" name=\"sort\" value=\"$sort\">\n"
. "<input type=\"hidden\" name=\"order\" value=\"$order\">\n"
. "<input type=\"hidden\" name=\"query\" value=\"$query\">\n"
. "<input type=\"hidden\" name=\"start\" value=\"$start\">\n"
. "<input type=\"hidden\" name=\"filter\" value=\"$filter\">\n"
. "<input type=\"hidden\" name=\"cat_id\" value=\"$cat_id\">\n";
$t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('admin'));
$t->set_file(array('category_delete' => 'delete_cat.tpl'));
2001-03-25 04:35:39 +02:00
$t->set_var('messages',lang('Are you sure you want to delete this category ?'));
$t->set_var('hidden_vars',$hidden_vars);
$exists = $c->exists('subs',$cat_name='',$cat_id);
if ($exists==True) {
2001-04-10 01:20:09 +02:00
$t->set_var('lang_subs',lang('Do you also want to delete all subcategories ?'));
$t->set_var('subs','<input type="checkbox" name="subs" value="True">');
}
else {
$t->set_var('lang_subs','');
$t->set_var('subs', '');
}
2001-03-25 04:35:39 +02:00
$t->set_var('nolink',$phpgw->link('/admin/categories.php',"cat_id=$cat_id&start=$start&query=$query&sort=$sort&order=$order&filter=$filter"));
$t->set_var('lang_no',lang('No'));
2001-03-25 04:35:39 +02:00
$t->set_var('action_url',$phpgw->link('/admin/deletecategory.php',"cat_id=$cat_id"));
$t->set_var('lang_yes',lang('Yes'));
2001-03-25 04:35:39 +02:00
$t->pparse('out','category_delete');
}
$phpgw->common->phpgw_footer();
?>