Files
dolibarr/htdocs/conf/conf.class.php3.sample
Rodolphe Quiedeville cc4040bc07 Syntax Error
2003-02-01 17:30:54 +00:00

207 lines
4.0 KiB
Plaintext
Raw Blame History

<?PHP
/* Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*
*/
class Conf {
var $readonly;
var $dbi;
Function Conf() {
$this->theme = "dolibarr";
$this->liste_limit = 10;
$this->db = new DbConf();
$this->societe = 1;
$this->commercial = 0;
$this->voyage = 0;
$this->compta = new ComptaConf();
$this->propal = new PropalConf();
$this->facture = new FactureConf();
$this->fichinter = new FicheInterConf();
$this->webcal = new WebcalConf();
$this->produit = new ProduitConf();
$this->service = new ServiceConf();
$this->adherent = new AdherentConf();
$this->domaine = new DomaineConf();
$this->readonly = 0;
$this->years = 2001;
$this->password_encrypted = 1;
$this->css = "theme/dolibarr/dolibarr.css";
}
}
class ComptaConf
{
Function ComptaConf()
{
$this->tva = 1;
}
}
class PropalConf {
Function PropalConf() {
$this->fromtoname = "Service Commercial";
$this->fromtomail = "commercial@propal.com";
$this->replytoname = "Service Commercial";
$this->replytomail = "commercial@propal.com";
$this->templatesdir = "/home/www/dolibarr/dolibarr/templates/propal/default";
$this->outputdir = "/home/www/dolibarr/dolibarr/htdocs/document/propal";
/*
* Without ended slash
*/
$this->outputurl = "/document/propal";
}
}
/*
* Base de donn<6E>es
*
*/
class DbConf {
Function DbConf() {
$this->type = "mysql";
$this->host = "localhost";
$this->user = "";
$this->pass = "";
$this->name = "dolibarr";
}
}
/*
* Calendrier
*
*/
class WebcalConf {
Function WebcalConf() {
$this->enabled = 1;
$this->url = "http://webcalendar.lafrere.lan/";
$this->db = new DbConf();
$this->db->user = "webcal";
$this->db->name = "webcal";
}
}
/*
* Factures
*
*/
class FactureConf {
Function FactureConf() {
$this->enabled = 1;
$this->templatesdir = "/home/www/dolibarr/dolibarr/templates/facture/default";
$this->outputdir = "/home/www/dolibarr/dolibarr/htdocs/document/facture";
/*
* Without ended slash
*/
$this->outputurl = "/document/facture";
}
}
/*
* Fiche d'intervention
*
*/
class FicheInterConf {
Function FicheInterConf() {
$this->enabled = 1;
$this->templatesdir = "/home/www/dolibarr/dolibarr/templates/fichinter/default";
$this->outputdir = "/home/www/dolibarr/dolibarr/htdocs/document/fichinter";
/*
* Without ended slash
*/
$this->outputurl = "/document/fichinter";
}
}
/*
* Dons
*
*/
class DonConf {
Function DonConf() {
$this->enabled = 0;
/* Paiement en ligne */
$this->onlinepayment = 0;
/* Don minimum, 0 pas de limite */
$this->minimum = 0;
/* Email des moderateurs */
$this->email_moderator = "root@localhost";
}
}
/*
* Produits
*
*/
class ProduitConf {
Function ProduitConf() {
$this->enabled = 0;
}
}
/*
* Service
*
*/
class ServiceConf {
Function ServiceConf() {
$this->enabled = 0;
}
}
/*
* Adherents
*
*/
class AdherentConf {
Function AdherentConf() {
$this->enabled = 0;
}
}
/*
* Domaines
*
*/
class DomaineConf {
Function DomaineConf() {
$this->enabled = 0;
}
}
?>