2001-04-01 03:48:00 +02:00
|
|
|
<?php
|
2001-05-15 01:33:42 +02:00
|
|
|
/***************************************************************************\
|
|
|
|
* phpGroupWare - Categories *
|
|
|
|
* 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$ */
|
|
|
|
|
|
|
|
$phpgw_flags = array('currentapp' => $cats_app,
|
|
|
|
'noappheader' => True,
|
|
|
|
'noappfooter' => True);
|
|
|
|
|
|
|
|
$phpgw_info['flags'] = $phpgw_flags;
|
|
|
|
include('../header.inc.php');
|
|
|
|
|
|
|
|
$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="cats_app" value="' . $cats_app . '">' . "\n"
|
|
|
|
. '<input type="hidden" name="extra" value="' . $extra . '">' . "\n"
|
|
|
|
. '<input type="hidden" name="global_cats" value="' . $global_cats . '">' . "\n"
|
|
|
|
. '<input type="hidden" name="cats_level" value="' . $cats_level . '">' . "\n"
|
|
|
|
. '<input type="hidden" name="filter" value="' . $filter . '">' . "\n";
|
|
|
|
|
|
|
|
$t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('preferences'));
|
|
|
|
$t->set_file(array('form' => 'category_form.tpl'));
|
|
|
|
$t->set_block('form','add','addhandle');
|
|
|
|
$t->set_block('form','edit','edithandle');
|
|
|
|
|
|
|
|
$c = CreateObject('phpgwapi.categories');
|
|
|
|
$c->app_name = $cats_app;
|
|
|
|
|
2001-07-19 01:51:52 +02:00
|
|
|
if ($new_parent)
|
|
|
|
{
|
|
|
|
$cat_parent = $new_parent;
|
|
|
|
}
|
|
|
|
|
2001-05-15 01:33:42 +02:00
|
|
|
if ($submit)
|
2001-05-11 22:14:28 +02:00
|
|
|
{
|
2001-05-15 01:33:42 +02:00
|
|
|
$errorcount = 0;
|
|
|
|
|
|
|
|
if (!$cat_name)
|
|
|
|
{
|
2001-06-10 06:53:48 +02:00
|
|
|
$error[$errorcount++] = lang('Please enter a name');
|
2001-05-15 01:33:42 +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-15 01:33:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$error)
|
|
|
|
{
|
2001-07-19 01:51:52 +02:00
|
|
|
if ($cat_access)
|
2001-05-15 01:33:42 +02:00
|
|
|
{
|
|
|
|
$cat_access = 'private';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$cat_access = 'public';
|
|
|
|
}
|
|
|
|
|
2001-07-19 01:51:52 +02:00
|
|
|
$c->add(array
|
|
|
|
(
|
|
|
|
'name' => $cat_name,
|
|
|
|
'descr' => $cat_description,
|
|
|
|
'parent' => $cat_parent,
|
|
|
|
'access' => $cat_access,
|
|
|
|
'data' => $cat_data
|
|
|
|
));
|
2001-05-15 01:33:42 +02:00
|
|
|
}
|
2001-05-11 22:14:28 +02:00
|
|
|
}
|
|
|
|
|
2001-05-15 01:33:42 +02:00
|
|
|
if ($errorcount)
|
2001-05-11 22:14:28 +02:00
|
|
|
{
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('message',$phpgw->common->error_list($error));
|
2001-05-11 22:14:28 +02:00
|
|
|
}
|
|
|
|
|
2001-05-15 01:33:42 +02:00
|
|
|
if (($submit) && (! $error) && (! $errorcount))
|
2001-04-21 17:51:39 +02:00
|
|
|
{
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('message',lang('Category x has been added !',$cat_name));
|
2001-04-01 03:48:00 +02:00
|
|
|
}
|
|
|
|
|
2001-05-15 01:33:42 +02:00
|
|
|
if ((! $submit) && (! $error) && (! $errorcount))
|
2001-05-11 22:14:28 +02:00
|
|
|
{
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('message','');
|
2001-05-11 22:14:28 +02:00
|
|
|
}
|
2001-05-15 01:33:42 +02:00
|
|
|
|
|
|
|
$t->set_var('actionurl',$phpgw->link('/preferences/addcategory.php'));
|
2001-05-15 12:40:44 +02:00
|
|
|
$t->set_var('title_categories',lang('Add x category for',lang($cats_app)));
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('doneurl',$phpgw->link('/preferences/categories.php'));
|
|
|
|
$t->set_var('user_name',$phpgw_info['user']['fullname']);
|
|
|
|
$t->set_var('hidden_vars',$hidden_vars);
|
|
|
|
$t->set_var('font',$phpgw_info['theme']['font']);
|
2001-07-19 01:51:52 +02:00
|
|
|
$t->set_var('lang_parent',lang('Parent category'));
|
|
|
|
$t->set_var('lang_none',lang('None'));
|
2001-05-15 01:33:42 +02:00
|
|
|
|
|
|
|
if ($cats_level)
|
|
|
|
{
|
|
|
|
if ($global_cats)
|
|
|
|
{
|
|
|
|
$category_list = $c->formated_list('select','all',$cat_parent,True);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$category_list = $c->formated_list('select','all',$cat_parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-19 01:51:52 +02:00
|
|
|
if ($global_cats)
|
|
|
|
{
|
|
|
|
$category_list = $c->formated_list('select','mains',$cat_parent,True);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$category_list = $c->formated_list('select','mains',$cat_parent);
|
|
|
|
}
|
2001-05-15 01:33:42 +02:00
|
|
|
}
|
|
|
|
|
2001-07-19 01:51:52 +02:00
|
|
|
$t->set_var('category_list',$category_list);
|
|
|
|
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('lang_access',lang('Private'));
|
|
|
|
|
2001-07-19 01:51:52 +02:00
|
|
|
if ($cat_access)
|
2001-05-15 01:33:42 +02:00
|
|
|
{
|
2001-07-19 01:51:52 +02:00
|
|
|
$t->set_var('access', '<input type="checkbox" name="cat_access" value="True" checked>');
|
2001-05-15 01:33:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-07-19 01:51:52 +02:00
|
|
|
$t->set_var('access', '<input type="checkbox" name="cat_access" value="True">');
|
2001-05-15 01:33:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$t->set_var('lang_name',lang('Name'));
|
|
|
|
$t->set_var('lang_descr',lang('Description'));
|
|
|
|
$t->set_var('cat_name',$cat_name);
|
|
|
|
$t->set_var('cat_description',$cat_description);
|
|
|
|
|
|
|
|
if ($extra)
|
|
|
|
{
|
2001-07-19 01:51:52 +02:00
|
|
|
$t->set_var('td_data','<input name="cat_data" size="50" value="' . $phpgw->strip_html($cat_data) . '">');
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('lang_data',lang($extra));
|
2001-05-11 02:47:50 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-05-15 01:33:42 +02:00
|
|
|
$t->set_var('td_data','');
|
|
|
|
$t->set_var('lang_data','');
|
2001-05-11 02:47:50 +02:00
|
|
|
}
|
|
|
|
|
2001-05-15 01:33:42 +02:00
|
|
|
$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-11 02:47:50 +02:00
|
|
|
?>
|