Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1973 → Rev 1974

/branches/v1.0-menes/client/phorum/phorum.php
New file
0,0 → 1,107
<?php
/*vim: set expandtab tabstop=4 shiftwidth=4: */
// +------------------------------------------------------------------------------------------------------+
// | PHP version 4.1 |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
// +------------------------------------------------------------------------------------------------------+
// | This library is free software; you can redistribute it and/or |
// | modify it under the terms of the GNU Lesser General Public |
// | License as published by the Free Software Foundation; either |
// | version 2.1 of the License, or (at your option) any later version. |
// | |
// | This library 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 |
// | Lesser General Public License for more details. |
// | |
// | You should have received a copy of the GNU Lesser General Public |
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id$
/**
* Phorum
*
* Application de forums
*
*@package inscription
//Auteur original :
*@author Florian SCHMITT <florian@ecole-et-nature.org>
*
*@copyright Outils-Reseaux 2006-2010
*@version $Revision$ $Date$
// +------------------------------------------------------------------------------------------------------+
*/
 
// +------------------------------------------------------------------------------------------------------+
// | ENTETE du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
 
include_once 'configuration/phorum.config.inc.php';
chdir($PHORUM_DIR);
 
// +------------------------------------------------------------------------------------------------------+
// | LISTE de FONCTIONS |
// +------------------------------------------------------------------------------------------------------+
// create a namespace for Phorum
function phorum_namespace($page)
{
global $PHORUM; // globalize the $PHORUM array
include_once("./$page.php");
}
 
function phorum_custom_get_url ($page, $query_items, $suffix)
{
// on défini l'URL de tous les liens (qui conservent les GET) et rajoute les pages
$url_reecrite = $_SERVER['REQUEST_URI'];
$decoupe=explode("&param=",$url_reecrite);
$url_reecrite = $decoupe[0];
$url = "$url_reecrite&param=$page";
 
if(count($query_items)) $url.=",".implode(",", $query_items);
 
if(!empty($suffix)) $url.=$suffix;
 
return $url;
}
 
 
function afficherContenuCorps() {
$res = '' ;
ob_start();
$decoupe=explode("&param=",$_SERVER["QUERY_STRING"]);
if (isset($decoupe[1])) $url_reecrite = $decoupe[1]; else $url_reecrite = '';
$match = '' ;
if(preg_match("/^([a-z]+),?/", $url_reecrite, $match)){
$GLOBALS["PHORUM_CUSTOM_QUERY_STRING"] = str_replace($match[0], "", $url_reecrite);
$page = basename($match[1]);
} elseif(isset($_REQUEST["page"])){
$page = basename($_REQUEST["page"]);
$getparts = array();
foreach (explode("&", $_SERVER["QUERY_STRING"]) as $q) {
if (substr($q, 0, 5) != "page=") {
$getparts[] = $q;
}
}
$GLOBALS["PHORUM_CUSTOM_QUERY_STRING"] = implode(",", $getparts);
} else {
$page="index";
}
if(file_exists("./$page.php")){
phorum_namespace($page);
}
$res .= ob_get_clean();
return $res ;
}
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log$
*
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>