egroupware/admin/addcategory.php

110 lines
3.4 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. *
\**************************************************************************/
2001-05-11 22:43:51 +02:00
/* $Id$ */
2001-03-25 04:35:39 +02:00
2001-05-14 23:55:12 +02:00
$phpgw_info['flags']['currentapp'] = 'admin';
include('../header.inc.php');
2001-03-25 04:35:39 +02:00
2001-05-14 23:55:12 +02:00
$t = CreateObject('phpgwapi.Template',PHPGW_APP_TPL);
$t->set_file(array('form' => 'category_form.tpl'));
$t->set_block('form','add','addhandle');
$t->set_block('form','edit','edithandle');
2001-03-25 04:35:39 +02:00
2001-05-14 23:55:12 +02:00
$c = CreateObject('phpgwapi.categories');
$c->app_name = 'phpgw';
2001-03-25 04:35:39 +02:00
2001-05-14 23:55:12 +02:00
if ($submit)
2001-05-10 13:21:06 +02:00
{
2001-05-14 23:55:12 +02:00
$errorcount = 0;
if (!$cat_name)
{
2001-06-10 06:53:48 +02:00
$error[$errorcount++] = lang('Please enter a name');
2001-05-14 23:55:12 +02:00
}
if (!$error)
{
if (!$cat_parent)
{
$exists = $c->exists('appandmains',$cat_name,$cat_id='');
}
else
{
$exists = $c->exists('appandsubs',$cat_name,$cat_id='');
}
if ($exists == True)
{
2001-06-10 06:53:48 +02:00
$error[$errorcount++] = lang('That name has been used already');
2001-05-14 23:55:12 +02:00
}
}
if ($cat_main && $cat_parent)
{
$main = $c->return_main($cat_parent);
if ($main != $cat_main)
{
2001-06-10 06:53:48 +02:00
$error[$errorcount++] = lang('You have selected an invalid main category !');
2001-05-14 23:55:12 +02:00
}
}
if (!$error)
{
$cat_name = addslashes($cat_name);
$cat_description = addslashes($cat_description);
$cat_access = 'public';
$c->add($cat_name,$cat_parent,$cat_description,$cat_data,$cat_access,$cat_main);
}
2001-05-11 22:43:51 +02:00
}
2001-05-14 23:55:12 +02:00
if ($errorcount)
2001-05-11 22:43:51 +02:00
{
2001-05-14 23:55:12 +02:00
$t->set_var('message',$phpgw->common->error_list($error));
2001-03-25 04:35:39 +02:00
}
2001-05-14 23:55:12 +02:00
if (($submit) && (! $error) && (! $errorcount))
2001-05-11 22:43:51 +02:00
{
2001-05-14 23:55:12 +02:00
$t->set_var('message',lang('Category x has been added !', $cat_name));
2001-05-11 22:43:51 +02:00
}
2001-05-14 23:55:12 +02:00
if ((! $submit) && (! $error) && (! $errorcount))
2001-05-11 22:43:51 +02:00
{
2001-05-14 23:55:12 +02:00
$t->set_var('message','');
2001-05-11 22:43:51 +02:00
}
2001-05-14 23:55:12 +02:00
$t->set_var('title_categories',lang('Add global category'));
$t->set_var('actionurl',$phpgw->link('/admin/addcategory.php'));
$t->set_var('doneurl',$phpgw->link('/admin/categories.php'));
$t->set_var('hidden_vars','<input type="hidden" name="cat_id" value="' . $cat_id . '">');
$t->set_var('lang_main',lang('Main category'));
$t->set_var('lang_new_main',lang('New main category'));
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main));
$t->set_var('lang_parent',lang('Parent category'));
2001-06-10 06:53:48 +02:00
$t->set_var('lang_select_parent',lang('Choose the parent category'));
2001-05-14 23:55:12 +02:00
$t->set_var('category_list',$c->formated_list('select','all',$cat_parent));
2001-06-10 06:53:48 +02:00
$t->set_var('lang_name',lang('Name'));
$t->set_var('lang_descr',lang('Description'));
2001-05-14 23:55:12 +02:00
$t->set_var('cat_name',$cat_name);
$t->set_var('cat_description',$cat_description);
$t->set_var('lang_add',lang('Add'));
$t->set_var('lang_reset',lang('Clear Form'));
$t->set_var('lang_done',lang('Done'));
$t->set_var('edithandle','');
$t->set_var('addhandle','');
$t->pparse('out','form');
$t->pparse('addhandle','add');
$phpgw->common->phpgw_footer();
2001-05-10 13:21:06 +02:00
?>