Qware_core/config_orig/config.navigation.php

111 lines
2.8 KiB
PHP
Raw Normal View History

2020-12-07 13:28:14 +01:00
<?php
/**------------------------------------------------
*
* Rooty, 2018 <rooty@rooty.me>
*
*
* This software is protected by copyright, please
* read the file COPYRIGHT.
* This program 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. Please
* read the file LICENCE.
*
* Fichier config.php
*
* Ce fichier contient les définitions de constantes permettant
* au plugin Navigation de fonctionner en https.
*
* @author NH-Système <g.lafaye@nh-systeme.fr>
* @link www.rooty.me
* @since 2007/05/21
* @version 0.3
* @package commun
* @subpackage config
* @copyright Copyright &copy; 2009-2018, Rooty
*/
/**
* déclaration du système... si cette variable n'est pas définie, les fichiers inclus ne marcheront pas...
* cette variable est déclarée sur la page d'exécution du script.
*<p> if ( !defined('SYSTEM_IN') )
* {
* die("Hacking attempt");
* }</p>
*/
if ( !defined('SYSTEM_IN') )
{
die("Hacking attempt");
}
/**
* @global chaine $GLOBALS['CONF_ALL_SECURE']
* @name $CONF_ALL_SECURE
* @desc Définit un dialogue sécurisé de toute la plateforme.<br />
* Va de paire avec $CONF_AUTH_SECURE
*/
$GLOBALS['CONF_ALL_SECURE']=false;
/**
* @global tableau $GLOBALS['SYSTEM_CLASS_METHOD_SECURE']
* @name $SYSTEM_CLASS_METHOD_SECURE
* @desc Liste des couples classe.méthode autorisés à dialoguer en https.<br />
* Va de paire avec $CONF_AUTH_SECURE
*/
$GLOBALS['SYSTEM_CLASS_METHOD_SECURE']=array(
"home.formlectureqaptcha",
"home.formlecture",
"home.formlectureadhqaptcha",
"home.formlectureadh",
"home.formlectureadhpart",
"home.formlectureadhsoc",
);
/**
* @global tableau $GLOBALS['SYSTEM_CLASS_SECURE']
* @name $SYSTEM_CLASS_SECURE
* @desc Liste des classes autorisées à dialoguer en https.<br />
* Va de paire avec $CONF_AUTH_SECURE
*/
$GLOBALS['SYSTEM_CLASS_SECURE']=array(
// "home"
);
/**
* @global tableau $GLOBALS['SYSTEM_OID_SECURE']
* @name $SYSTEM_OID_SECURE
* @desc Liste des oid (identifiants des objets de coordination) autorisés à dialoguer.<br />
* Va de paire avec $CONF_AUTH_SECURE
*/
$GLOBALS['SYSTEM_OID_SECURE']=array(
// 2,
);
/**
* @global tableau $GLOBALS['SYSTEM_NODE_SECURE']
* @name $SYSTEM_NODE_SECURE
* @desc Liste des noeuds autorisés à dialoguer en https.<br />
* Va de paire avec $CONF_AUTH_SECURE
*/
$GLOBALS['SYSTEM_NODE_SECURE']=array(
141,
140,
// 142,
);
$GLOBALS['EXCLUDETOOLSFROMGUESTMENU']=array(
"y. Mes Fichiers",
"y. My Files",
"aaaa. Gérer les News",
"aaaa. Manage News",
"aab. Les communautés",
"aab. Communities",
);
$GLOBALS['EXCLUDETOOLSFROMUSERMENU']=array(
"aab. Mon Compte",
"aab. My Account",);
?>