30-09-2007, 12:55 AM
Alors quelqu'un peut faire quelque chose ??
Code :
class admin{
private $path,$modules,$loaded_module_name;
public $smarty,$lang,$db;
function __construct($lang,$path,$db,$debug){
require_once("./admin.class.php");
require_once("./libs/Smarty.class.php");
$this->lang = new lang($lang);
$this->db = $db;
$this->path = $path;
$this->smarty = new Smarty;
$this->smarty->compile_check = true;
$this->smarty->debugging = $debug;
$this->smarty->template_dir = "templates/";
return true;
}
}