Your IP : 216.73.216.59


Current Path : /home/quelfutuu/www/lchg/plugins/auto/accesrestreint/v6.1.0/action/
Upload File :
Current File : /home/quelfutuu/www/lchg/plugins/auto/accesrestreint/v6.1.0/action/acceder_document.php

<?php

/**
 * Plugin Acces Restreint 5.0 pour Spip 4.x
 * Licence GPL (c) depuis 2006 Cedric Morin
 *
 */

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

include_spip('inc/headers');

// acces aux documents joints securise
// verifie soit que le demandeur est authentifie
// soit que le document est publie, c'est-a-dire
// joint a au moins 1 article, breve ou rubrique publie

// https://code.spip.net/@action_acceder_document_dist
function action_acceder_document_dist() {

	// $file exige pour eviter le scan id_document par id_document
	$f = rawurldecode(_request('file'));
	$arg = rawurldecode(_request('arg'));
	$cle = _request('cle');

	$api_docrestreint = charger_fonction('api_docrestreint', 'action');
	return $api_docrestreint("$arg/$cle/$f");
}