forked from extern/egroupware
formatting
This commit is contained in:
parent
ed1da95900
commit
158c78afb6
@ -1,182 +1,181 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* 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$ */
|
||||
/***************************************************************************\
|
||||
* 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_flags = array('currentapp' => $cats_app,
|
||||
'noappheader' => True,
|
||||
'noappfooter' => True);
|
||||
|
||||
$phpgw_info['flags'] = $phpgw_flags;
|
||||
include('../header.inc.php');
|
||||
$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";
|
||||
$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');
|
||||
|
||||
$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;
|
||||
|
||||
$c = CreateObject('phpgwapi.categories');
|
||||
$c->app_name = $cats_app;
|
||||
|
||||
if ($submit)
|
||||
{
|
||||
$errorcount = 0;
|
||||
|
||||
if (!$cat_name)
|
||||
if ($submit)
|
||||
{
|
||||
$error[$errorcount++] = lang('Please enter a name for that category !');
|
||||
$errorcount = 0;
|
||||
|
||||
if (!$cat_name)
|
||||
{
|
||||
$error[$errorcount++] = lang('Please enter a name for that category !');
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
$error[$errorcount++] = lang('That category name has been used already !');
|
||||
}
|
||||
}
|
||||
|
||||
if ($cat_main && $cat_parent)
|
||||
{
|
||||
$main = $c->return_main($cat_parent);
|
||||
if ($main != $cat_main)
|
||||
{
|
||||
$error[$errorcount++] = lang('You selected an invalid main category !');
|
||||
}
|
||||
}
|
||||
|
||||
if (!$error)
|
||||
{
|
||||
$cat_name = addslashes($cat_name);
|
||||
$cat_description = addslashes($cat_description);
|
||||
if ($access)
|
||||
{
|
||||
$cat_access = 'private';
|
||||
}
|
||||
else
|
||||
{
|
||||
$cat_access = 'public';
|
||||
}
|
||||
|
||||
$c->add($cat_name,$cat_parent,$cat_description,$cat_data,$cat_access,$cat_main);
|
||||
}
|
||||
}
|
||||
|
||||
if (!$error)
|
||||
if ($errorcount)
|
||||
{
|
||||
if (!$cat_parent)
|
||||
{
|
||||
$exists = $c->exists('appandmains',$cat_name,$cat_id='');
|
||||
}
|
||||
else
|
||||
{
|
||||
$exists = $c->exists('appandsubs',$cat_name,$cat_id='');
|
||||
}
|
||||
|
||||
if ($exists == True)
|
||||
{
|
||||
$error[$errorcount++] = lang('That category name has been used already !');
|
||||
}
|
||||
$t->set_var('message',$phpgw->common->error_list($error));
|
||||
}
|
||||
|
||||
if ($cat_main && $cat_parent)
|
||||
if (($submit) && (! $error) && (! $errorcount))
|
||||
{
|
||||
$main = $c->return_main($cat_parent);
|
||||
if ($main != $cat_main)
|
||||
{
|
||||
$error[$errorcount++] = lang('You selected an invalid main category !');
|
||||
}
|
||||
$t->set_var('message',lang('Category x has been added !',$cat_name));
|
||||
}
|
||||
|
||||
if (!$error)
|
||||
if ((! $submit) && (! $error) && (! $errorcount))
|
||||
{
|
||||
$cat_name = addslashes($cat_name);
|
||||
$cat_description = addslashes($cat_description);
|
||||
if ($access)
|
||||
{
|
||||
$cat_access = 'private';
|
||||
}
|
||||
else
|
||||
{
|
||||
$cat_access = 'public';
|
||||
}
|
||||
|
||||
$c->add($cat_name,$cat_parent,$cat_description,$cat_data,$cat_access,$cat_main);
|
||||
$t->set_var('message','');
|
||||
}
|
||||
}
|
||||
|
||||
if ($errorcount)
|
||||
{
|
||||
$t->set_var('message',$phpgw->common->error_list($error));
|
||||
}
|
||||
$t->set_var('actionurl',$phpgw->link('/preferences/addcategory.php'));
|
||||
$t->set_var('title_categories',lang('Add x category for',$cats_app));
|
||||
$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']);
|
||||
|
||||
if (($submit) && (! $error) && (! $errorcount))
|
||||
{
|
||||
$t->set_var('message',lang('Category x has been added !',$cat_name));
|
||||
}
|
||||
$t->set_var('lang_main',lang('Main category'));
|
||||
$t->set_var('lang_new_main',lang('New main category'));
|
||||
|
||||
if ((! $submit) && (! $error) && (! $errorcount))
|
||||
{
|
||||
$t->set_var('message','');
|
||||
}
|
||||
|
||||
$t->set_var('actionurl',$phpgw->link('/preferences/addcategory.php'));
|
||||
$t->set_var('title_categories',lang('Add x category for',$cats_app));
|
||||
$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']);
|
||||
|
||||
$t->set_var('lang_main',lang('Main category'));
|
||||
$t->set_var('lang_new_main',lang('New main category'));
|
||||
|
||||
if ($global_cats)
|
||||
{
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main,True));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main));
|
||||
}
|
||||
|
||||
if ($cats_level)
|
||||
{
|
||||
if ($global_cats)
|
||||
{
|
||||
$category_list = $c->formated_list('select','all',$cat_parent,True);
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main,True));
|
||||
}
|
||||
else
|
||||
{
|
||||
$category_list = $c->formated_list('select','all',$cat_parent);
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main));
|
||||
}
|
||||
|
||||
$t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Select parent category') . '</option>' . $category_list .'</select>');
|
||||
$t->set_var('lang_parent',lang('Parent category'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_parent','');
|
||||
$t->set_var('category_select','');
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
||||
$t->set_var('lang_access',lang('Private'));
|
||||
$t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Select parent category') . '</option>' . $category_list .'</select>');
|
||||
$t->set_var('lang_parent',lang('Parent category'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_parent','');
|
||||
$t->set_var('category_select','');
|
||||
}
|
||||
|
||||
if ($access)
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True" checked>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True">');
|
||||
}
|
||||
$t->set_var('lang_access',lang('Private'));
|
||||
|
||||
$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 ($access)
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True" checked>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True">');
|
||||
}
|
||||
|
||||
if ($extra)
|
||||
{
|
||||
$t->set_var('td_data','<input name="cat_data" size="50" value="' . $cat_data . '">');
|
||||
$t->set_var('lang_data',lang($extra));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('td_data','');
|
||||
$t->set_var('lang_data','');
|
||||
}
|
||||
$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);
|
||||
|
||||
$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');
|
||||
if ($extra)
|
||||
{
|
||||
$t->set_var('td_data','<input name="cat_data" size="50" value="' . $cat_data . '">');
|
||||
$t->set_var('lang_data',lang($extra));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('td_data','');
|
||||
$t->set_var('lang_data','');
|
||||
}
|
||||
|
||||
$phpgw->common->phpgw_footer();
|
||||
$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();
|
||||
?>
|
||||
|
@ -1,192 +1,194 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* 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$ */
|
||||
/***************************************************************************\
|
||||
* 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,
|
||||
'enable_nextmatchs_class' => True,
|
||||
$phpgw_flags = array('currentapp' => $cats_app,
|
||||
'enable_nextmatchs_class' => True,
|
||||
'noappheader' => True,
|
||||
'noappfooter' => True);
|
||||
|
||||
$phpgw_info['flags'] = $phpgw_flags;
|
||||
include('../header.inc.php');
|
||||
$phpgw_info['flags'] = $phpgw_flags;
|
||||
include('../header.inc.php');
|
||||
|
||||
$t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('preferences'));
|
||||
$t->set_file(array('cat_list_t' => 'listcats.tpl',
|
||||
'cat_list' => 'listcats.tpl'));
|
||||
$t->set_block('cat_list_t','cat_list','list');
|
||||
$t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('preferences'));
|
||||
$t->set_file(array('cat_list_t' => 'listcats.tpl',
|
||||
'cat_list' => 'listcats.tpl'));
|
||||
$t->set_block('cat_list_t','cat_list','list');
|
||||
|
||||
$common_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";
|
||||
$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->set_var('font',$phpgw_info['theme']['font']);
|
||||
$t->set_var('user_name',$phpgw_info['user']['fullname']);
|
||||
$t->set_var('title_categories',lang('categories for'));
|
||||
$t->set_var('lang_action',lang('Category list'));
|
||||
$t->set_var('add_action',$phpgw->link('/preferences/addcategory.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_add',lang('Add'));
|
||||
$t->set_var('lang_search',lang('Search'));
|
||||
$t->set_var('actionurl',$phpgw->link('/preferences/categories.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_done',lang('Done'));
|
||||
$t->set_var('doneurl',$phpgw->link('/preferences/'));
|
||||
$t->set_var('font',$phpgw_info['theme']['font']);
|
||||
$t->set_var('user_name',$phpgw_info['user']['fullname']);
|
||||
$t->set_var('hidden_vars',$hidden_vars);
|
||||
$t->set_var('title_categories',lang('categories for'));
|
||||
$t->set_var('lang_action',lang('Category list'));
|
||||
$t->set_var('add_action',$phpgw->link('/preferences/addcategory.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_add',lang('Add'));
|
||||
$t->set_var('lang_search',lang('Search'));
|
||||
$t->set_var('actionurl',$phpgw->link('/preferences/categories.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_done',lang('Done'));
|
||||
$t->set_var('doneurl',$phpgw->link('/preferences/'));
|
||||
|
||||
if (! $start) { $start = 0; }
|
||||
if (! $start) { $start = 0; }
|
||||
|
||||
if($phpgw_info['user']['preferences']['common']['maxmatchs'] && $phpgw_info['user']['preferences']['common']['maxmatchs'] > 0)
|
||||
{
|
||||
$limit = $phpgw_info['user']['preferences']['common']['maxmatchs'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$limit = 15;
|
||||
}
|
||||
if($phpgw_info['user']['preferences']['common']['maxmatchs'] && $phpgw_info['user']['preferences']['common']['maxmatchs'] > 0)
|
||||
{
|
||||
$limit = $phpgw_info['user']['preferences']['common']['maxmatchs'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$limit = 15;
|
||||
}
|
||||
|
||||
$c = CreateObject('phpgwapi.categories');
|
||||
$c->app_name = $cats_app;
|
||||
$c = CreateObject('phpgwapi.categories');
|
||||
$c->app_name = $cats_app;
|
||||
|
||||
if ($global_cats)
|
||||
{
|
||||
$categories = $c->return_array('all',$start,$limit,$query,$sort,$order,True);
|
||||
}
|
||||
else
|
||||
{
|
||||
$categories = $c->return_array('all',$start,$limit,$query,$sort,$order);
|
||||
}
|
||||
if ($global_cats)
|
||||
{
|
||||
$categories = $c->return_array('all',$start,True,$query,$sort,$order,True);
|
||||
}
|
||||
else
|
||||
{
|
||||
$categories = $c->return_array('all',$start,True,$query,$sort,$order);
|
||||
}
|
||||
|
||||
//--------------------------------- nextmatch --------------------------------------------
|
||||
|
||||
$left = $phpgw->nextmatchs->left('/preferences/categories.php',$start,$c->total_records,"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats");
|
||||
$right = $phpgw->nextmatchs->right('/preferences/categories.php',$start,$c->total_records,"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats");
|
||||
$t->set_var('left',$left);
|
||||
$t->set_var('right',$right);
|
||||
$left = $phpgw->nextmatchs->left('/preferences/categories.php',$start,$c->total_records,"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats");
|
||||
$right = $phpgw->nextmatchs->right('/preferences/categories.php',$start,$c->total_records,"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats");
|
||||
$t->set_var('left',$left);
|
||||
$t->set_var('right',$right);
|
||||
|
||||
if ($c->total_records > $limit)
|
||||
{
|
||||
$t->set_var('lang_showing',lang('showing x - x of x',($start + 1),($start + $limit),$c->total_records));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_showing',lang('showing x',$c->total_records));
|
||||
}
|
||||
if ($c->total_records > $limit)
|
||||
{
|
||||
$t->set_var('lang_showing',lang('showing x - x of x',($start + 1),($start + $limit),$c->total_records));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_showing',lang('showing x',$c->total_records));
|
||||
}
|
||||
|
||||
// ------------------------------ end nextmatch ------------------------------------------
|
||||
|
||||
//------------------- list header variable template-declarations -------------------------
|
||||
|
||||
$t->set_var('th_bg',$phpgw_info['theme']['th_bg']);
|
||||
$t->set_var('sort_name',$phpgw->nextmatchs->show_sort_order($sort,'cat_name',$order,'/preferences/categories.php',lang('Name'),"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('sort_description',$phpgw->nextmatchs->show_sort_order($sort,'cat_description',$order,'/preferences/categories.php',lang('Description'),"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
if ($extra)
|
||||
{
|
||||
$t->set_var('sort_data','<td bgcolor="' . $phpgw_info['theme']['th_bg'] . '"><font face="' . $phpgw_info['theme']['font'] . '">'
|
||||
. $phpgw->nextmatchs->show_sort_order($sort,'cat_data',$order,'/preferences/categories.php',lang($extra),"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats") . '</td>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('sort_data','');
|
||||
}
|
||||
$t->set_var('th_bg',$phpgw_info['theme']['th_bg']);
|
||||
$t->set_var('sort_name',$phpgw->nextmatchs->show_sort_order($sort,'cat_name',$order,'/preferences/categories.php',lang('Name'),"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('sort_description',$phpgw->nextmatchs->show_sort_order($sort,'cat_description',$order,'/preferences/categories.php',lang('Description'),"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
if ($extra)
|
||||
{
|
||||
$t->set_var('sort_data','<td bgcolor="' . $phpgw_info['theme']['th_bg'] . '"><font face="' . $phpgw_info['theme']['font'] . '">'
|
||||
. $phpgw->nextmatchs->show_sort_order($sort,'cat_data',$order,'/preferences/categories.php',lang($extra),"&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats") . '</td>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('sort_data','');
|
||||
}
|
||||
|
||||
$t->set_var('lang_app',lang($cats_app));
|
||||
$t->set_var('lang_edit',lang('Edit'));
|
||||
$t->set_var('lang_delete',lang('Delete'));
|
||||
$t->set_var('lang_app',lang($cats_app));
|
||||
$t->set_var('lang_edit',lang('Edit'));
|
||||
$t->set_var('lang_delete',lang('Delete'));
|
||||
|
||||
// -------------------------- end header declaration --------------------------------------
|
||||
|
||||
for ($i=0;$i<count($categories);$i++)
|
||||
{
|
||||
|
||||
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
||||
$t->set_var('tr_color',$tr_color);
|
||||
|
||||
$cat_id = $categories[$i]['id'];
|
||||
$owner = $categories[$i]['owner'];
|
||||
$level = $categories[$i]['level'];
|
||||
$space = ' ';
|
||||
|
||||
if ($categories[$i]['app_name'] == 'phpgw')
|
||||
for ($i=0;$i<count($categories);$i++)
|
||||
{
|
||||
$appendix = '<' . lang('Global') . '>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$appendix = '';
|
||||
}
|
||||
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
||||
$t->set_var('tr_color',$tr_color);
|
||||
$cat_id = $categories[$i]['id'];
|
||||
$owner = $categories[$i]['owner'];
|
||||
$level = $categories[$i]['level'];
|
||||
$space = ' ';
|
||||
|
||||
if ($level > 0)
|
||||
{
|
||||
$spaceset = str_repeat($space,$level);
|
||||
$name = $spaceset .$phpgw->strip_html($categories[$i]['name']) . $appendix;
|
||||
}
|
||||
if ($categories[$i]['app_name'] == 'phpgw')
|
||||
{
|
||||
$appendix = '<' . lang('Global') . '>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$appendix = '';
|
||||
}
|
||||
|
||||
$descr = $phpgw->strip_html($categories[$i]['description']);
|
||||
if (! $descr) { $descr = ' '; }
|
||||
if ($level > 0)
|
||||
{
|
||||
$spaceset = str_repeat($space,$level);
|
||||
$name = $spaceset .$phpgw->strip_html($categories[$i]['name']) . $appendix;
|
||||
}
|
||||
|
||||
if ($extra)
|
||||
{
|
||||
$data = $categories[$i]['data'];
|
||||
if (! $data) { $data = ' '; }
|
||||
$t->set_var('td_data','<td><font face=' . $phpgw_info['theme']['font'] . '>' . $data . '</font></td>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('td_data','');
|
||||
}
|
||||
$descr = $phpgw->strip_html($categories[$i]['description']);
|
||||
if (! $descr) { $descr = ' '; }
|
||||
|
||||
if ($level == 0)
|
||||
{
|
||||
$name = '<font color="FF0000"><b>' . $phpgw->strip_html($categories[$i]['name']) . '</b></font>' . $appendix;
|
||||
$descr = '<font color="FF0000"><b>' . $descr . '</b></font>';
|
||||
$data = '<font color="FF0000"><b>' . $data . '</b></font>';
|
||||
}
|
||||
if ($extra)
|
||||
{
|
||||
$data = $categories[$i]['data'];
|
||||
if (! $data) { $data = ' '; }
|
||||
$t->set_var('td_data','<td><font face=' . $phpgw_info['theme']['font'] . '>' . $data . '</font></td>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('td_data','');
|
||||
}
|
||||
|
||||
if ($level == 0)
|
||||
{
|
||||
$name = '<font color="FF0000"><b>' . $phpgw->strip_html($categories[$i]['name']) . '</b></font>' . $appendix;
|
||||
$descr = '<font color="FF0000"><b>' . $descr . '</b></font>';
|
||||
$data = '<font color="FF0000"><b>' . $data . '</b></font>';
|
||||
}
|
||||
|
||||
//-------------------------- template declaration for list records ---------------------------
|
||||
|
||||
$t->set_var(array('name' => $name,
|
||||
'descr' => $descr));
|
||||
$t->set_var(array('name' => $name,
|
||||
'descr' => $descr));
|
||||
|
||||
$t->set_var('app_url',$phpgw->link('/' . $phpgw_info['flags']['currentapp'] . '/index.php',"cat_id=$cat_id"));
|
||||
$t->set_var('app_url',$phpgw->link('/' . $phpgw_info['flags']['currentapp'] . '/index.php',"cat_id=$cat_id"));
|
||||
|
||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'] && $categories[$i]['app_name'] != 'phpgw')
|
||||
{
|
||||
$t->set_var('edit',$phpgw->link('/preferences/editcategory.php',"cat_id=$cat_id&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_edit_entry',lang('Edit'));
|
||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'] && $categories[$i]['app_name'] != 'phpgw')
|
||||
{
|
||||
$t->set_var('edit',$phpgw->link('/preferences/editcategory.php',"cat_id=$cat_id&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_edit_entry',lang('Edit'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('edit','');
|
||||
$t->set_var('lang_edit_entry',' ');
|
||||
}
|
||||
|
||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'] && $categories[$i]['app_name'] != 'phpgw')
|
||||
{
|
||||
$t->set_var('delete',$phpgw->link('/preferences/deletecategory.php',"cat_id=$cat_id&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_delete_entry',lang('Delete'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('delete','');
|
||||
$t->set_var('lang_delete_entry',' ');
|
||||
}
|
||||
|
||||
$t->parse('list','cat_list',True);
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('edit','');
|
||||
$t->set_var('lang_edit_entry',' ');
|
||||
}
|
||||
if ($categories[$i]['owner'] == $phpgw_info['user']['account_id'] && $categories[$i]['app_name'] != 'phpgw')
|
||||
{
|
||||
$t->set_var('delete',$phpgw->link('/preferences/deletecategory.php',"cat_id=$cat_id&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_delete_entry',lang('Delete'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('delete','');
|
||||
$t->set_var('lang_delete_entry',' ');
|
||||
}
|
||||
$t->parse('list','cat_list',True);
|
||||
}
|
||||
|
||||
// ---------------------------- end record declaration -----------------------------------------
|
||||
|
||||
$t->parse('out','cat_list_t',True);
|
||||
$t->p('out');
|
||||
$t->parse('out','cat_list_t',True);
|
||||
$t->p('out');
|
||||
|
||||
$phpgw->common->phpgw_footer();
|
||||
$phpgw->common->phpgw_footer();
|
||||
?>
|
||||
|
@ -1,82 +1,87 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* 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$ */
|
||||
/***************************************************************************\
|
||||
* 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$ */
|
||||
|
||||
if (! $cat_id)
|
||||
{
|
||||
Header('Location: ' . $phpgw->link('/preferences/categories.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
}
|
||||
|
||||
if ($confirm)
|
||||
{
|
||||
$phpgw_info['flags'] = array('noheader' => True,
|
||||
'nonavbar' => True);
|
||||
}
|
||||
|
||||
$phpgw_info['flags']['currentapp'] = $cats_app;
|
||||
$phpgw_info['flags']['noappheader'] = True;
|
||||
$phpgw_info['flags']['noappfooter'] = True;
|
||||
|
||||
include('../header.inc.php');
|
||||
|
||||
$c = CreateObject('phpgwapi.categories');
|
||||
$c->app_name = $cats_app;
|
||||
|
||||
if ($confirm)
|
||||
{
|
||||
if ($subs)
|
||||
if (! $cat_id)
|
||||
{
|
||||
$c->delete($cat_id,'True');
|
||||
Header('Location: ' . $phpgw->link('/preferences/categories.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
}
|
||||
else
|
||||
|
||||
if ($confirm)
|
||||
{
|
||||
$c->delete($cat_id);
|
||||
$phpgw_info['flags'] = array('noheader' => True,
|
||||
'nonavbar' => True);
|
||||
}
|
||||
Header('Location: ' . $phpgw->link('/preferences/categories.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
}
|
||||
else
|
||||
{
|
||||
$hidden_vars = "<input type=\"hidden\" name=\"cat_id\" value=\"$cat_id\">\n"
|
||||
. "<input type=\"hidden\" name=\"cats_app\" value=\"$cats_app\">\n"
|
||||
. "<input type=\"hidden\" name=\"cats_level\" value=\"$cats_level\">\n"
|
||||
. "<input type=\"hidden\" name=\"global_cats\" value=\"$global_cats\">\n"
|
||||
. "<input type=\"hidden\" name=\"extra\" value=\"$extra\">\n";
|
||||
|
||||
$t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('preferences'));
|
||||
$t->set_file(array('category_delete' => 'delete.tpl'));
|
||||
$t->set_var('deleteheader',lang('Are you sure you want to delete this category ?'));
|
||||
$t->set_var('font',$phpgw_info['theme']['font']);
|
||||
$t->set_var('hidden_vars',$hidden_vars);
|
||||
$phpgw_info['flags']['currentapp'] = $cats_app;
|
||||
$phpgw_info['flags']['noappheader'] = True;
|
||||
$phpgw_info['flags']['noappfooter'] = True;
|
||||
|
||||
$exists = $c->exists('subs',$cat_name='',$cat_id);
|
||||
if ($exists==True)
|
||||
include('../header.inc.php');
|
||||
|
||||
$c = CreateObject('phpgwapi.categories');
|
||||
$c->app_name = $cats_app;
|
||||
|
||||
if ($confirm)
|
||||
{
|
||||
$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">');
|
||||
if ($subs)
|
||||
{
|
||||
$c->delete($cat_id,'True');
|
||||
}
|
||||
else
|
||||
{
|
||||
$c->delete($cat_id);
|
||||
}
|
||||
Header('Location: ' . $phpgw->link('/preferences/categories.php',"cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_subs','');
|
||||
$t->set_var('subs', '');
|
||||
$hidden_vars = '<input type="hidden" name="sort" value="' . $sort . '">' . "\n"
|
||||
. '<input type="hidden" name="order" value="' . $order . '">' . "\n"
|
||||
. '<input type="hidden" name="start" value="' . $start . '">' . "\n"
|
||||
. '<input type="hidden" name="query" value="' . $query . '">' . "\n"
|
||||
. '<input type="hidden" name="filter" value="' . $filter . '">' . "\n"
|
||||
. '<input type="hidden" name="cat_id" value="' . $cat_id . '">' . "\n"
|
||||
. '<input type="hidden" name="cats_app" value="' . $cats_app . '">' . "\n"
|
||||
. '<input type="hidden" name="cats_level" value="' . $cats_level . '">' . "\n"
|
||||
. '<input type="hidden" name="global_cats" value="' . $global_cats . '">' . "\n"
|
||||
. '<input type="hidden" name="extra" value="' . $extra . '">' . "\n";
|
||||
|
||||
$t = CreateObject('phpgwapi.Template',$phpgw->common->get_tpl_dir('preferences'));
|
||||
$t->set_file(array('category_delete' => 'delete.tpl'));
|
||||
$t->set_var('deleteheader',lang('Are you sure you want to delete this category ?'));
|
||||
$t->set_var('font',$phpgw_info['theme']['font']);
|
||||
$t->set_var('hidden_vars',$hidden_vars);
|
||||
|
||||
$exists = $c->exists('subs',$cat_name='',$cat_id);
|
||||
if ($exists==True)
|
||||
{
|
||||
$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', '');
|
||||
}
|
||||
|
||||
$t->set_var('nolink',$phpgw->link('/preferences/categories.php',"cat_id=$cat_id&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_no',lang('No'));
|
||||
|
||||
$t->set_var('action_url',$phpgw->link('/preferences/deletecategory.php',"cat_id=$cat_id$cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_yes',lang('Yes'));
|
||||
|
||||
$t->pparse('out','category_delete');
|
||||
}
|
||||
|
||||
$t->set_var('nolink',$phpgw->link('/preferences/categories.php',"cat_id=$cat_id&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_no',lang('No'));
|
||||
|
||||
$t->set_var('action_url',$phpgw->link('/preferences/deletecategory.php',"cat_id=$cat_id$cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
$t->set_var('lang_yes',lang('Yes'));
|
||||
|
||||
$t->pparse('out','category_delete');
|
||||
}
|
||||
|
||||
$phpgw->common->phpgw_footer();
|
||||
$phpgw->common->phpgw_footer();
|
||||
?>
|
||||
|
@ -1,159 +1,190 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* 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$ */
|
||||
/***************************************************************************\
|
||||
* 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$ */
|
||||
|
||||
if (! $cat_id)
|
||||
{
|
||||
Header('Location: ' . $phpgw->link('/preferences/categories.php',"sort=$sort&order=$order&query=$query&start=$start"
|
||||
. "&filter=$filter&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
}
|
||||
|
||||
$phpgw_info['flags']['currentapp'] = $cats_app;
|
||||
$phpgw_info['flags']['noappheader'] = True;
|
||||
$phpgw_info['flags']['noappfooter'] = True;
|
||||
|
||||
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=\"cat_id\" value=\"$cat_id\">\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;
|
||||
|
||||
if ($submit)
|
||||
{
|
||||
$errorcount = 0;
|
||||
|
||||
if (!$cat_name) { $error[$errorcount++] = lang('Please enter a name for that category !'); }
|
||||
|
||||
if (!$error)
|
||||
if (! $cat_id)
|
||||
{
|
||||
if (!$cat_parent) { $exists = $c->exists('appandmains',$cat_name,$cat_id); }
|
||||
else { $exists = $c->exists('appandsubs',$cat_name,$cat_id); }
|
||||
if ($exists == True) { $error[$errorcount++] = lang('That category name has been used already !'); }
|
||||
Header('Location: ' . $phpgw->link('/preferences/categories.php',"sort=$sort&order=$order&query=$query&start=$start"
|
||||
. "&filter=$filter&cats_app=$cats_app&extra=$extra&cats_level=$cats_level&global_cats=$global_cats"));
|
||||
}
|
||||
|
||||
if ($cat_main && $cat_parent) {
|
||||
$main = $c->return_main($cat_parent);
|
||||
if ($main != $cat_main) { $error[$errorcount++] = lang('You selected an invalid main category !'); }
|
||||
}
|
||||
$phpgw_info['flags']['currentapp'] = $cats_app;
|
||||
$phpgw_info['flags']['noappheader'] = True;
|
||||
$phpgw_info['flags']['noappfooter'] = True;
|
||||
|
||||
$cat_name = addslashes($cat_name);
|
||||
$cat_description = addslashes($cat_description);
|
||||
if ($access) { $cat_access = 'private'; }
|
||||
else { $cat_access = 'public'; }
|
||||
include('../header.inc.php');
|
||||
|
||||
if (! $error) { $c->edit($cat_id,$cat_parent,$cat_name,$cat_description,$cat_data,$cat_access,$cat_main); }
|
||||
}
|
||||
$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="cat_id" value="' . $cat_id . '">' . "\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";
|
||||
|
||||
if ($errorcount) { $t->set_var('message',$phpgw->common->error_list($error)); }
|
||||
if (($submit) && (! $error) && (! $errorcount)) { $t->set_var('message',lang('Category x has been updated !',$cat_name)); }
|
||||
if ((! $submit) && (! $error) && (! $errorcount)) { $t->set_var('message',''); }
|
||||
$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');
|
||||
|
||||
$cats = $c->return_single($cat_id);
|
||||
$c = CreateObject('phpgwapi.categories');
|
||||
$c->app_name = $cats_app;
|
||||
|
||||
$cat_main = $cats[0]['main'];
|
||||
$t->set_var('lang_main',lang('Main category'));
|
||||
$t->set_var('lang_new_main',lang('New main category'));
|
||||
if ($submit)
|
||||
{
|
||||
$errorcount = 0;
|
||||
|
||||
if ($global_cats)
|
||||
{
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main,True));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main));
|
||||
}
|
||||
if (!$cat_name)
|
||||
{
|
||||
$error[$errorcount++] = lang('Please enter a name for that category !');
|
||||
}
|
||||
|
||||
if ($cats_level)
|
||||
{
|
||||
$cat_parent = $cats[0]['parent'];
|
||||
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)
|
||||
{
|
||||
$error[$errorcount++] = lang('That category name has been used already !');
|
||||
}
|
||||
}
|
||||
|
||||
if ($cat_main && $cat_parent)
|
||||
{
|
||||
$main = $c->return_main($cat_parent);
|
||||
if ($main != $cat_main)
|
||||
{
|
||||
$error[$errorcount++] = lang('You selected an invalid main category !');
|
||||
}
|
||||
}
|
||||
|
||||
$cat_name = addslashes($cat_name);
|
||||
$cat_description = addslashes($cat_description);
|
||||
if ($access)
|
||||
{
|
||||
$cat_access = 'private';
|
||||
}
|
||||
else
|
||||
{
|
||||
$cat_access = 'public';
|
||||
}
|
||||
|
||||
if (! $error)
|
||||
{
|
||||
$c->edit($cat_id,$cat_parent,$cat_name,$cat_description,$cat_data,$cat_access,$cat_main);
|
||||
}
|
||||
}
|
||||
|
||||
if ($errorcount)
|
||||
{
|
||||
$t->set_var('message',$phpgw->common->error_list($error));
|
||||
}
|
||||
if (($submit) && (! $error) && (! $errorcount))
|
||||
{
|
||||
$t->set_var('message',lang('Category x has been updated !',$cat_name));
|
||||
}
|
||||
if ((! $submit) && (! $error) && (! $errorcount))
|
||||
{
|
||||
$t->set_var('message','');
|
||||
}
|
||||
|
||||
$cats = $c->return_single($cat_id);
|
||||
|
||||
$cat_main = $cats[0]['main'];
|
||||
$t->set_var('lang_main',lang('Main category'));
|
||||
$t->set_var('lang_new_main',lang('New main category'));
|
||||
|
||||
if ($global_cats)
|
||||
{
|
||||
$category_list = $c->formated_list('select','all',$cat_parent,True);
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main,True));
|
||||
}
|
||||
else
|
||||
{
|
||||
$category_list = $c->formated_list('select','all',$cat_parent);
|
||||
$t->set_var('main_category_list',$c->formated_list('select','mains',$cat_main));
|
||||
}
|
||||
|
||||
$t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Select parent category') . '</option>' . $category_list .'</select>');
|
||||
$t->set_var('lang_parent',lang('Parent category'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_parent','');
|
||||
$t->set_var('category_select','');
|
||||
}
|
||||
if ($cats_level)
|
||||
{
|
||||
$cat_parent = $cats[0]['parent'];
|
||||
|
||||
$t->set_var('font',$phpgw_info['theme']['font']);
|
||||
$t->set_var('user_name',$phpgw_info['user']['fullname']);
|
||||
$t->set_var('title_categories',lang('Edit x category for',$cats_app));
|
||||
$t->set_var('doneurl',$phpgw->link('/preferences/categories.php'));
|
||||
$t->set_var('actionurl',$phpgw->link('/preferences/editcategory.php'));
|
||||
$t->set_var('deleteurl',$phpgw->link('/preferences/deletecategory.php'));
|
||||
$t->set_var('hidden_vars',$hidden_vars);
|
||||
$t->set_var('lang_name',lang('Name'));
|
||||
$t->set_var('lang_descr',lang('Description'));
|
||||
$t->set_var('lang_access',lang('Private'));
|
||||
if ($global_cats)
|
||||
{
|
||||
$category_list = $c->formated_list('select','all',$cat_parent,True);
|
||||
}
|
||||
else
|
||||
{
|
||||
$category_list = $c->formated_list('select','all',$cat_parent);
|
||||
}
|
||||
|
||||
if ($cats[0]['access']=='private')
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True" checked>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True"');
|
||||
}
|
||||
$t->set_var('category_select','<select name="cat_parent"><option value="">' . lang('Select parent category') . '</option>' . $category_list .'</select>');
|
||||
$t->set_var('lang_parent',lang('Parent category'));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('lang_parent','');
|
||||
$t->set_var('category_select','');
|
||||
}
|
||||
|
||||
$cat_id = $cats[0]['id'];
|
||||
$t->set_var('font',$phpgw_info['theme']['font']);
|
||||
$t->set_var('user_name',$phpgw_info['user']['fullname']);
|
||||
$t->set_var('title_categories',lang('Edit x category for',$cats_app));
|
||||
$t->set_var('doneurl',$phpgw->link('/preferences/categories.php'));
|
||||
$t->set_var('actionurl',$phpgw->link('/preferences/editcategory.php'));
|
||||
$t->set_var('deleteurl',$phpgw->link('/preferences/deletecategory.php'));
|
||||
$t->set_var('hidden_vars',$hidden_vars);
|
||||
$t->set_var('lang_name',lang('Name'));
|
||||
$t->set_var('lang_descr',lang('Description'));
|
||||
$t->set_var('lang_access',lang('Private'));
|
||||
|
||||
$t->set_var('cat_name',$phpgw->strip_html($cats[0]['name']));
|
||||
$t->set_var('cat_description',$phpgw->strip_html($cats[0]['description']));
|
||||
if ($cats[0]['access']=='private')
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True" checked>');
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('access', '<input type="checkbox" name="access" value="True"');
|
||||
}
|
||||
|
||||
if ($extra)
|
||||
{
|
||||
$t->set_var('td_data','<input name="cat_data" size="50" value="' . $cats[0]['data'] . '">');
|
||||
$t->set_var('lang_data',lang($extra));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('td_data','');
|
||||
$t->set_var('lang_data','');
|
||||
}
|
||||
$cat_id = $cats[0]['id'];
|
||||
|
||||
$t->set_var('lang_edit',lang('Edit'));
|
||||
$t->set_var('lang_delete',lang('Delete'));
|
||||
$t->set_var('lang_done',lang('Done'));
|
||||
$t->set_var('cat_name',$phpgw->strip_html($cats[0]['name']));
|
||||
$t->set_var('cat_description',$phpgw->strip_html($cats[0]['description']));
|
||||
|
||||
$t->set_var('edithandle','');
|
||||
$t->set_var('addhandle','');
|
||||
if ($extra)
|
||||
{
|
||||
$t->set_var('td_data','<input name="cat_data" size="50" value="' . $cats[0]['data'] . '">');
|
||||
$t->set_var('lang_data',lang($extra));
|
||||
}
|
||||
else
|
||||
{
|
||||
$t->set_var('td_data','');
|
||||
$t->set_var('lang_data','');
|
||||
}
|
||||
|
||||
$t->pparse('out','form');
|
||||
$t->pparse('edithandle','edit');
|
||||
|
||||
$phpgw->common->phpgw_footer();
|
||||
$t->set_var('lang_edit',lang('Edit'));
|
||||
$t->set_var('lang_delete',lang('Delete'));
|
||||
$t->set_var('lang_done',lang('Done'));
|
||||
$t->set_var('edithandle','');
|
||||
$t->set_var('addhandle','');
|
||||
$t->pparse('out','form');
|
||||
$t->pparse('edithandle','edit');
|
||||
$phpgw->common->phpgw_footer();
|
||||
?>
|
||||
|
@ -1,74 +1,80 @@
|
||||
<!-- $Id$ -->
|
||||
|
||||
<!-- BEGIN form -->
|
||||
|
||||
<center>
|
||||
<table border="0" width="80%" cellspacing="2" cellpadding="2">
|
||||
<tr>
|
||||
<td colspan="1" align="center" bgcolor="#c9c9c9"><font face="{font}"><b>{title_categories}: {user_name}<b/></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
<font face="{font}">{message}</font>
|
||||
<table border="0" width="80%" cellspacing="2" cellpadding="2">
|
||||
<form name="form" action="{actionurl}" method="POST">
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_main}</font></td>
|
||||
<td><font face="{font}"><select name="cat_main"><option value="">{lang_new_main}</option>{main_category_list}</select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_parent}</font></td>
|
||||
<td><font face="{font}">{category_select}</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_name}</font></td>
|
||||
<td><font face="{font}"><input name="cat_name" size="50" value="{cat_name}"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_descr}</font></td>
|
||||
<td colspan=2><font face="{font}"><textarea name="cat_description" rows="4" cols="50" wrap="virtual">{cat_description}</textarea></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_data}</font></td>
|
||||
<td><font face="{font}">{td_data}</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_access}</font></td>
|
||||
<td colspan=2>{access}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="80%" cellspacing="2" cellpadding="2">
|
||||
<tr>
|
||||
<td colspan="1" align="center" bgcolor="#c9c9c9"><font face="{font}"><b>{title_categories}: {user_name}<b/></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
<font face="{font}">{message}</font>
|
||||
<table border="0" width="80%" cellspacing="2" cellpadding="2">
|
||||
<form name="form" action="{actionurl}" method="POST">
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_main}</font></td>
|
||||
<td><font face="{font}"><select name="cat_main"><option value="">{lang_new_main}</option>{main_category_list}</select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_parent}</font></td>
|
||||
<td><font face="{font}">{category_select}</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_name}</font></td>
|
||||
<td><font face="{font}"><input name="cat_name" size="50" value="{cat_name}"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_descr}</font></td>
|
||||
<td colspan=2><font face="{font}"><textarea name="cat_description" rows="4" cols="50" wrap="virtual">{cat_description}</textarea></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_data}</font></td>
|
||||
<td><font face="{font}">{td_data}</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="{font}">{lang_access}</font></td>
|
||||
<td colspan=2>{access}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- BEGIN add -->
|
||||
<table width="50%" border="0" cellspacing="2" cellpadding="2">
|
||||
<tr valign="bottom">
|
||||
<td height="50" align="right">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="submit" value="{lang_add}"></font></td>
|
||||
<td height="50" align="center">
|
||||
<font face="{font}"><input type="reset" name="reset" value="{lang_reset}"></font></form></td>
|
||||
<td height="50">
|
||||
<form method="POST" action="{doneurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="done" value="{lang_done}"></font></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</center>
|
||||
|
||||
<table width="50%" border="0" cellspacing="2" cellpadding="2">
|
||||
<tr valign="bottom">
|
||||
<td height="50" align="right">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="submit" value="{lang_add}"></font></td>
|
||||
<td height="50" align="center">
|
||||
<font face="{font}"><input type="reset" name="reset" value="{lang_reset}"></font></form></td>
|
||||
<td height="50">
|
||||
<form method="POST" action="{doneurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="done" value="{lang_done}"></font></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
<!-- END add -->
|
||||
|
||||
<!-- BEGIN edit -->
|
||||
<table width="50%" border="0" cellspacing="2" cellpadding="2">
|
||||
<tr valign="bottom">
|
||||
<td height="50" align="right">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="submit" value="{lang_edit}"></font></form></td>
|
||||
<td height="50" align="center">
|
||||
<form method="POST" action="{deleteurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="delete" value="{lang_delete}"></font></form></td>
|
||||
<td height="50">
|
||||
<form method="POST" action="{doneurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="done" value="{lang_done}"></font></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
<table width="50%" border="0" cellspacing="2" cellpadding="2">
|
||||
<tr valign="bottom">
|
||||
<td height="50" align="right">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="submit" value="{lang_edit}"></font></form></td>
|
||||
<td height="50" align="center">
|
||||
<form method="POST" action="{deleteurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="delete" value="{lang_delete}"></font></form></td>
|
||||
<td height="50">
|
||||
<form method="POST" action="{doneurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="done" value="{lang_done}"></font></form></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
<!-- END edit -->
|
||||
<!-- END form -->
|
||||
|
||||
<!-- END form -->
|
||||
|
@ -1,22 +1,25 @@
|
||||
<!-- $Id$ -->
|
||||
|
||||
<!-- BEGIN form -->
|
||||
<center>
|
||||
<table border=0 width="65%" cellpadding="2" cellspacing="2">
|
||||
<form method="POST" action="{action_url}">
|
||||
<tr>
|
||||
<td align=center><font face="{font}">{deleteheader}</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">{lang_subs}</td>
|
||||
<td align="center">{subs}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><font face="{font}">
|
||||
{hidden_vars}
|
||||
<input type="submit" name="confirm" value="{lang_yes}"></font></td>
|
||||
</form>
|
||||
<td align="center"><font face="{font}"><a href="{nolink}">{lang_no}</a></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
<!-- END form -->
|
||||
|
||||
<center>
|
||||
<table border="0" width="65%" cellpadding="2" cellspacing="2">
|
||||
<form method="POST" action="{action_url}">
|
||||
<tr>
|
||||
<td align="center"><font face="{font}">{deleteheader}</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">{lang_subs}</td>
|
||||
<td align="center">{subs}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><font face="{font}">
|
||||
{hidden_vars}
|
||||
<input type="submit" name="confirm" value="{lang_yes}"></font></td>
|
||||
</form>
|
||||
<td align="center"><font face="{font}"><a href="{nolink}">{lang_no}</a></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
<!-- END form -->
|
||||
|
@ -1,65 +1,72 @@
|
||||
<!-- $Id$ -->
|
||||
<center>
|
||||
<table border="0" cellspacing="0" cellpadding="0" width="80%">
|
||||
<tr>
|
||||
<td colspan="3" width="80%" align="center" bgcolor="#c9c9c9"><font face="{font}"><b>{lang_app} {title_categories}: {user_name}<b/></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align=left>
|
||||
<table border="0" width="100%">
|
||||
<tr>
|
||||
{left}
|
||||
<td align="center"><font face="{font}">{lang_showing}</font></td>
|
||||
{right}
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td colspan="3" align=right>
|
||||
<form method="post" action="{actionurl}">
|
||||
<font face="{font}"><input type="text" name="query"> <input type="submit" name="search" value="{lang_search}"></font>
|
||||
</form></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="2" width="80%">
|
||||
<tr bgcolor="{th_bg}">
|
||||
<td bgcolor="{th_bg}"><font face="{font}">{sort_name}</font></td>
|
||||
<td bgcolor="{th_bg}"><font face="{font}">{sort_description}</font></td>
|
||||
{sort_data}
|
||||
<td bgcolor="{th_bg}" align="center"><font face="{font}">{lang_app}</font></td>
|
||||
<td bgcolor="{th_bg}" align=center><font face="{font}">{lang_edit}</font></td>
|
||||
<td bgcolor="{th_bg}" align=center><font face="{font}">{lang_delete}</font></td>
|
||||
</tr>
|
||||
|
||||
<center>
|
||||
<table border="0" cellspacing="0" cellpadding="0" width="80%">
|
||||
<tr>
|
||||
<td colspan="3" width="80%" align="center" bgcolor="#c9c9c9"><font face="{font}"><b>{lang_app} {title_categories}: {user_name}<b/></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align=left>
|
||||
<table border="0" width="100%">
|
||||
<tr>
|
||||
{left}
|
||||
<td align="center"><font face="{font}">{lang_showing}</font></td>
|
||||
{right}
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td colspan="3" align=right>
|
||||
<form method="post" action="{actionurl}">
|
||||
<font face="{font}"><input type="text" name="query"> <input type="submit" name="search" value="{lang_search}"></font>
|
||||
</form></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="2" width="80%">
|
||||
<tr bgcolor="{th_bg}">
|
||||
<td bgcolor="{th_bg}"><font face="{font}">{sort_name}</font></td>
|
||||
<td bgcolor="{th_bg}"><font face="{font}">{sort_description}</font></td>
|
||||
{sort_data}
|
||||
<td bgcolor="{th_bg}" align="center"><font face="{font}">{lang_app}</font></td>
|
||||
<td bgcolor="{th_bg}" align=center><font face="{font}">{lang_edit}</font></td>
|
||||
<td bgcolor="{th_bg}" align=center><font face="{font}">{lang_delete}</font></td>
|
||||
</tr>
|
||||
|
||||
<!-- BEGIN cat_list -->
|
||||
<tr bgcolor="{tr_color}">
|
||||
<td><font face="{font}">{name}</font></td>
|
||||
<td><font face="{font}">{descr}</font></td>
|
||||
{td_data}
|
||||
<td align="center"><font face="{font}"><a href="{app_url}">{lang_app}</a></font></td>
|
||||
<td align="center"><font face="{font}"><a href="{edit}">{lang_edit_entry}</a></font></td>
|
||||
<td align="center"><font face="{font}"><a href="{delete}">{lang_delete_entry}</font></td>
|
||||
</tr>
|
||||
|
||||
<tr bgcolor="{tr_color}">
|
||||
<td><font face="{font}">{name}</font></td>
|
||||
<td><font face="{font}">{descr}</font></td>
|
||||
{td_data}
|
||||
<td align="center"><font face="{font}"><a href="{app_url}">{lang_app}</a></font></td>
|
||||
<td align="center"><font face="{font}"><a href="{edit}">{lang_edit_entry}</a></font></td>
|
||||
<td align="center"><font face="{font}"><a href="{delete}">{lang_delete_entry}</font></td>
|
||||
</tr>
|
||||
|
||||
<!-- END cat_list -->
|
||||
|
||||
<!-- BEGINN add -->
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="2" width="80%">
|
||||
<tr valign="bottom">
|
||||
<td width="50%">
|
||||
<form method="POST" action="{add_action}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" value="{lang_add}"></font>
|
||||
</form>
|
||||
</td>
|
||||
<td width="50%" align="right">
|
||||
<form method="POST" action="{doneurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="done" value="{lang_done}"></font>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
<table border="0" cellspacing="2" cellpadding="2" width="80%">
|
||||
<tr valign="bottom">
|
||||
<td width="50%">
|
||||
<form method="POST" action="{add_action}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" value="{lang_add}"></font>
|
||||
</form>
|
||||
</td>
|
||||
<td width="50%" align="right">
|
||||
<form method="POST" action="{doneurl}">
|
||||
{hidden_vars}
|
||||
<font face="{font}"><input type="submit" name="done" value="{lang_done}"></font>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- END add -->
|
||||
</table>
|
||||
|
||||
</table>
|
||||
</center>
|
Loading…
Reference in New Issue
Block a user