| [ Index ] |
|
Code source de Dolibarr 2.0.1 |
1 <?php 2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org> 3 * Copyright (C) 2003 Xavier Dutoit <doli@sydesy.com> 4 * Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net> 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; either version 2 of the License, or 9 * (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 19 * 20 * $Id: conf.class.php,v 1.19 2005/04/13 09:54:22 rodolphe Exp $ 21 * $Source: /cvsroot/dolibarr/dolibarr/htdocs/conf/conf.class.php,v $ 22 * 23 * Ce fichier a vocation de disparaitre, la configuration se faisant 24 * dorénavant dans la base de donnée 25 * 26 */ 27 28 /** 29 \file htdocs/conf/conf.class.php 30 \brief Fichier de la classe de stockage de la config courante 31 \version $Revision: 1.19 $ 32 */ 33 34 35 /** 36 \class Conf 37 \brief Classe de stockage de la config courante 38 \todo Deplacer ce fichier dans htdocs/lib 39 */ 40 41 class Conf 42 { 43 /** \public */ 44 var $db; // Objet des caractéristiques de connexions 45 // base db->host, db->name, db->user, db->pass, db->type 46 var $langage; // Langue choisie fr_FR, en_US, ... 47 var $maxfilesize = 2000000; // Taille max des fichiers uploadés 48 49 var $externalrss; 50 var $commande; 51 var $ficheinter; 52 var $commercial; 53 var $societe; 54 var $expedition; 55 var $compta; 56 var $banque; 57 var $don; 58 var $caisse; 59 var $fournisseur; 60 var $adherent; 61 var $produit; 62 var $service; 63 var $stock; 64 var $boutique; 65 var $projet; 66 var $postnuke; 67 var $webcal; 68 var $propal; 69 var $categorie; 70 } 71 72 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Mon Nov 26 12:29:37 2007 | par Balluche grâce à PHPXref 0.7 |
|