2001-04-21 16:51:05 +02:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2001-04-23 05:13:03 +02:00
|
|
|
* phpGroupWare - Addressbook *
|
2001-04-21 16:51:05 +02:00
|
|
|
* http://www.phpgroupware.org *
|
2001-12-04 02:04:21 +01:00
|
|
|
* Written by Miles Lott <milosch@phpgroupware.org> *
|
2001-04-21 16:51:05 +02:00
|
|
|
* ----------------------------------------------- *
|
|
|
|
* 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-12-04 02:04:21 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2001-12-05 17:19:12 +01:00
|
|
|
$GLOBALS['phpgw_info'] = array();
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw_info']['flags']['currentapp'] = 'addressbook';
|
2001-04-21 16:51:05 +02:00
|
|
|
include('../header.inc.php');
|
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
if(!$GLOBALS['phpgw']->acl->check('run',1,'admin'))
|
2001-04-21 16:51:05 +02:00
|
|
|
{
|
|
|
|
echo lang('access not permitted');
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_exit();
|
2001-04-21 16:51:05 +02:00
|
|
|
}
|
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$field = $HTTP_POST_VARS['field'];
|
|
|
|
$field_name = $HTTP_POST_VARS['field_name'];
|
|
|
|
$start = $HTTP_POST_VARS['start'];
|
|
|
|
$query = $HTTP_POST_VARS['query'];
|
|
|
|
$sort = $HTTP_POST_VARS['sort'];
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->template->set_file(array('form' => 'field_form.tpl'));
|
|
|
|
$GLOBALS['phpgw']->template->set_block('form','add','addhandle');
|
|
|
|
$GLOBALS['phpgw']->template->set_block('form','edit','edithandle');
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
if ($HTTP_POST_VARS['submit'])
|
2001-05-21 10:18:40 +02:00
|
|
|
{
|
2001-04-21 16:51:05 +02:00
|
|
|
$errorcount = 0;
|
|
|
|
|
|
|
|
if (!$field_name)
|
|
|
|
{
|
|
|
|
$error[$errorcount++] = lang('Please enter a name for that field !');
|
|
|
|
}
|
|
|
|
|
|
|
|
$fields = read_custom_fields($start,$limit,$field_name);
|
|
|
|
if ($fields[0]['name'])
|
|
|
|
{
|
|
|
|
$error[$errorcount++] = lang('That field name has been used already !');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $error)
|
|
|
|
{
|
|
|
|
$field_name = addslashes($field_name);
|
|
|
|
save_custom_field($field,$field_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
if ($errorcount) { $GLOBALS['phpgw']->template->set_var('message',$GLOBALS['phpgw']->common->error_list($error)); }
|
|
|
|
if (($submit) && (! $error) && (! $errorcount)) { $GLOBALS['phpgw']->template->set_var('message',lang('Field x has been added !', $field_name)); }
|
|
|
|
if ((! $submit) && (! $error) && (! $errorcount)) { $GLOBALS['phpgw']->template->set_var('message',''); }
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('title_fields',lang('Add'). ' ' . lang('Custom Field'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('actionurl',$GLOBALS['phpgw']->link('/addressbook/addfield.php'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('doneurl',$GLOBALS['phpgw']->link('/addressbook/fields.php'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('hidden_vars','<input type="hidden" name="field" value="' . $field . '">');
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_name',lang('Field name'));
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_add',lang('Add'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_reset',lang('Clear Form'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_done',lang('Done'));
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('field_name',$field_name);
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('edithandle','');
|
|
|
|
$GLOBALS['phpgw']->template->set_var('addhandle','');
|
|
|
|
$GLOBALS['phpgw']->template->pparse('out','form');
|
|
|
|
$GLOBALS['phpgw']->template->pparse('addhandle','add');
|
2001-04-21 16:51:05 +02:00
|
|
|
|
2001-12-04 02:04:21 +01:00
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-04-21 16:51:05 +02:00
|
|
|
?>
|