uawdijnntqw1x1x1
IP : 216.73.217.34
Hostname : webm019.cluster129.gra.hosting.ovh.net
Kernel : Linux webm019.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
checkyd
/
www
/
plugins-dist
/
breves
/
..
/
plan
/
action
/
plan.php
/
/
<?php /** * Action retournant un morceau du plan du site (en ajax) * * @plugin Plan du site dans l’espace privé * @copyright 2015 * @author Matthieu Marcillaud * @licence GNU/GPL * @package SPIP\Plan\Action */ if (!defined('_ECRIRE_INC_VERSION')) { return; } function action_plan_dist() { include_spip('inc/autoriser'); if (!autoriser('ecrire')) { return false; } include_spip('base/objets'); include_spip('inc/utils'); $objet = table_objet(_request('objet')); $env = array( 'id_rubrique' => intval(_request('id_rubrique')), // pour le dépliement d'une rubrique, ne pas lister le contenu récursivement 'lister' => ($objet == 'rubriques') ? 'rubrique' : 'tout', 'conteneur' => 'non' ); if ($statut = _request('statut')) { $env['statut'] = $statut; } $fond = "prive/squelettes/inclure/plan-$objet"; header('Content-Type: text/html; charset=' . $GLOBALS['meta']['charset']); if (trouver_fond($fond)) { echo recuperer_fond($fond, $env); } else { echo ''; } }
/home/checkyd/www/plugins-dist/breves/../plan/action/plan.php