2 small improvements on Module and AccueilModules

Cette révision appartient à :
Chouchen 2010-10-07 15:57:02 +00:00
Parent 3574fc102c
révision d610c66d75
2 fichiers modifiés avec 2 ajouts et 2 suppressions

Voir le fichier

@ -1,7 +1,7 @@
<?php
function __autoload($class)
{
$BASE_DIR = '/homez.9/shikiryu/www/test/trunk3/';
$BASE_DIR = $_SERVER['DOCUMENT_ROOT'].'/test/trunk3/'; // à modifier selon la configuration souhaitée
set_include_path($BASE_DIR);
$path = 'modules/'.$class;
if(file_exists($path . DIRECTORY_SEPARATOR . ucfirst($class) . '.php') || file_exists($BASE_DIR . $path . DIRECTORY_SEPARATOR . ucfirst($class) . '.php')){

Voir le fichier

@ -80,7 +80,7 @@ class Module
* Enregistre le paramètre dans le conf
*/
public function setParam($class, $key, $value) {
echo 'setting :'.$key.' as '.$value.' in the '.$class.'\'s module';
// echo 'setting :'.$key.' as '.$value.' in the '.$class.'\'s module';
$xmla = simplexml_load_file('../'.AccueilModules::CONFIG_FILE);
$path = $xmla->xpath("//item[@id='".$class."']");