mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
129 lines
No EOL
4 KiB
PHP
129 lines
No EOL
4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* 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
|
|
*/
|
|
|
|
// Copyright 2015 Author Dany De Bontridder danydb@aevalys.eu
|
|
/**
|
|
* @file
|
|
* @brief display a box containing last actions
|
|
*/
|
|
if (!defined('ALLOWED'))
|
|
die('Appel direct ne sont pas permis');
|
|
if ($op=='action_show')
|
|
{
|
|
/**
|
|
* display action
|
|
*/
|
|
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
|
|
$gestion=new Follow_Up($cn);
|
|
$array=$gestion->get_last(25);
|
|
$len_array=count($array);
|
|
require_once NOALYSS_INCLUDE.'/template/action_show.php';
|
|
return;
|
|
}
|
|
if ($op=='action_add')
|
|
{
|
|
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
|
|
$gestion=new Follow_Up($cn);
|
|
$gestion->display_short();
|
|
return;
|
|
}
|
|
if ($op=='action_save')
|
|
{
|
|
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
|
|
|
|
/**
|
|
* save info from the get
|
|
*/
|
|
$date_event=HtmlInput::default_value_get("date_event", -1);
|
|
$dest=HtmlInput::default_value_get("dest", "");
|
|
$event_group=HtmlInput::default_value_get("event_group", 0);
|
|
$event_priority=HtmlInput::default_value_get("event_priority", 0);
|
|
$title=HtmlInput::default_value_get("title_event", NULL);
|
|
$summary=HtmlInput::default_value_get("summary", "");
|
|
$type_event=HtmlInput::default_value_get('type_event', -1);
|
|
/*
|
|
* Check if data are valid
|
|
*/
|
|
try
|
|
{
|
|
if ($date_event==-1||isDate($date_event)==0)
|
|
throw new Exception(_('Date invalide'));
|
|
if (trim($dest)=="")
|
|
$dest_id=NULL;
|
|
else
|
|
{
|
|
$fiche=new Fiche($cn);
|
|
$fiche->get_by_qcode($dest);
|
|
$dest_id=$fiche->id;
|
|
if ($dest_id==0)
|
|
throw new Exception(_('Destinataire invalide'));
|
|
}
|
|
if ($type_event==-1)
|
|
throw new Exception(_('Type invalide'));
|
|
if (trim($title)=="")
|
|
throw new Exception(_('Aucun titre'));
|
|
}
|
|
catch (Exception $ex)
|
|
{
|
|
header('Content-type: text/xml; charset=UTF-8');
|
|
$dom=new DOMDocument('1.0', 'UTF-8');
|
|
$xml_content=$dom->createElement('content', $ex->getMessage());
|
|
$xml_status=$dom->createElement('status', "NOK");
|
|
$root=$dom->createElement("root");
|
|
$root->appendChild($xml_content);
|
|
$root->appendChild($xml_status);
|
|
$dom->appendChild($root);
|
|
echo $dom->saveXML();
|
|
return;
|
|
}
|
|
/*
|
|
* Save data
|
|
*/
|
|
$gestion=new Follow_Up($cn);
|
|
$gestion->ag_priority=$event_priority;
|
|
$gestion->ag_title=$title;
|
|
$gestion->ag_dest=$event_group;
|
|
$gestion->ag_type=$type_event;
|
|
$gestion->f_id_dest=$dest_id;
|
|
$gestion->ag_state=3;
|
|
$gestion->dt_id=$type_event;
|
|
$gestion->ag_comment=h($summary);
|
|
$gestion->ag_timestamp=$date_event;
|
|
$gestion->ag_remind_date=$date_event;
|
|
$content=_('Sauvé');
|
|
$status='OK';
|
|
try {
|
|
$gestion->save_short();
|
|
} catch (Exception $ex)
|
|
{
|
|
$content=$ex->getMessage();
|
|
$status='NOK';
|
|
}
|
|
header('Content-type: text/xml; charset=UTF-8');
|
|
$dom=new DOMDocument('1.0', 'UTF-8');
|
|
$xml_content=$dom->createElement('content', _("Sauvé"));
|
|
$xml_status=$dom->createElement('status', "OK");
|
|
$root=$dom->createElement("root");
|
|
$root->appendChild($xml_content);
|
|
$root->appendChild($xml_status);
|
|
$dom->appendChild($root);
|
|
echo $dom->saveXML();
|
|
return;
|
|
} |