2015-09-27 00:35:53 +02:00
|
|
|
<?php
|
2018-04-13 18:58:28 +02:00
|
|
|
|
2015-09-27 00:35:53 +02:00
|
|
|
/*
|
|
|
|
* This file is part of NOALYSS.
|
|
|
|
*
|
|
|
|
* NOALYSS 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.
|
|
|
|
*
|
|
|
|
* NOALYSS is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with NOALYSS; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2018-04-13 18:58:28 +02:00
|
|
|
*/
|
2015-09-27 00:35:53 +02:00
|
|
|
|
|
|
|
// Copyright Author Dany De Bontridder danydb@aevalys.eu
|
|
|
|
|
|
|
|
/*!\file
|
|
|
|
* \brief this file is included to perform modification on category of document
|
|
|
|
* table document_type
|
|
|
|
*/
|
|
|
|
|
|
|
|
// show list of document
|
2018-04-13 18:58:28 +02:00
|
|
|
if (!defined('ALLOWED'))
|
|
|
|
die('Appel direct ne sont pas permis');
|
|
|
|
require_once NOALYSS_INCLUDE.'/class/document_type.class.php';
|
2015-09-27 00:35:53 +02:00
|
|
|
|
2018-04-13 18:58:28 +02:00
|
|
|
global $http;
|
|
|
|
|
|
|
|
if (isset($_POST['add']))
|
2015-09-27 00:35:53 +02:00
|
|
|
{
|
|
|
|
$catDoc=new Document_Type($cn);
|
2018-04-13 18:58:28 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
$cat=$http->post('cat');
|
|
|
|
$prefix=$http->post('prefix');
|
|
|
|
$catDoc->insert($cat, $prefix);
|
|
|
|
}
|
|
|
|
catch (Exception $exc)
|
|
|
|
{
|
|
|
|
echo $exc->getMessage();
|
|
|
|
error_log($exc->getTraceAsString());
|
|
|
|
}
|
2015-09-27 00:35:53 +02:00
|
|
|
}
|
2018-04-13 18:58:28 +02:00
|
|
|
if (isset($_POST['save']))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$dt_id=$http->post("dt_id", "number");
|
|
|
|
$name=
|
|
|
|
$prefix=
|
|
|
|
$catDoc=new Document_Type($cn, $dt_id);
|
|
|
|
$catDoc->get();
|
|
|
|
$catDoc->dt_value=trim($http->post("dt_name"));;
|
|
|
|
$catDoc->dt_prefix=trim($http->post("dt_prefix"));
|
|
|
|
if ($catDoc->dt_value=="")
|
|
|
|
{
|
|
|
|
alert(_("Le nom ne peut pas être vide"));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$catDoc->update();
|
|
|
|
}
|
|
|
|
if ($_POST['seq']!=0&&isNumber($_POST['seq'])==1)
|
|
|
|
{
|
|
|
|
$catDoc->set_number($_POST['seq']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception $exc)
|
|
|
|
{
|
|
|
|
alert ($exc->getMessage());
|
|
|
|
error_log($exc->getTraceAsString());
|
|
|
|
}
|
2015-09-27 00:35:53 +02:00
|
|
|
}
|
|
|
|
$aList=Document_Type::get_list($cn);
|
|
|
|
$addCat=new IText('cat');
|
|
|
|
$addPrefix=new IText('prefix');
|
|
|
|
$str_addCat=$addCat->input();
|
|
|
|
$str_addPrefix=$addPrefix->input();
|
2018-04-13 18:58:28 +02:00
|
|
|
$str_submit=HtmlInput::submit('add', _('Ajout'));
|
2015-09-27 00:35:53 +02:00
|
|
|
echo '<div class="content">';
|
2018-04-13 18:58:28 +02:00
|
|
|
require_once NOALYSS_TEMPLATE.'/list_category_document.php';
|
2015-09-27 00:35:53 +02:00
|
|
|
|
|
|
|
echo '</div>';
|
|
|
|
?>
|