forked from Wavyzz/dolibarr
95 lines
2.3 KiB
PHP
95 lines
2.3 KiB
PHP
<?php
|
|
/* Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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.
|
|
* or see http://www.gnu.org/
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/includes/modules/export/modules_export.php
|
|
\ingroup export
|
|
\brief Fichier contenant la classe mère de generation des exports
|
|
\version $Revision$
|
|
*/
|
|
|
|
|
|
/**
|
|
\class ModelePDFFactures
|
|
\brief Classe mère des modèles de facture
|
|
*/
|
|
|
|
class ModeleExports
|
|
{
|
|
var $error='';
|
|
|
|
var $modelname;
|
|
var $drivername;
|
|
var $driverversion;
|
|
|
|
|
|
/**
|
|
* \brief Constructeur
|
|
*/
|
|
function ModeleExports()
|
|
{
|
|
$this->modelname=array('csv'=>'Csv','excel'=>'Excel');
|
|
$this->drivername=array('csv'=>'Dolibarr','excel'=>'Php_WriteExcel');
|
|
$this->driverversion=array('csv'=>DOL_VERSION,'excel'=>'?');
|
|
}
|
|
|
|
/**
|
|
* \brief Renvoi la liste des modèles actifs
|
|
* \param db Handler de base
|
|
*/
|
|
function liste_modeles($db)
|
|
{
|
|
//$liste=array('csv','excel');
|
|
$liste=array('csv');
|
|
|
|
return $liste;
|
|
}
|
|
|
|
/**
|
|
* \brief Renvoi nom d'un format export
|
|
*/
|
|
function getModelName($key)
|
|
{
|
|
return $this->modelname[$key];
|
|
}
|
|
|
|
/**
|
|
* \brief Renvoi libelle d'un driver export
|
|
*/
|
|
function getDriverName($key)
|
|
{
|
|
return $this->drivername[$key];
|
|
}
|
|
|
|
/**
|
|
* \brief Renvoi version d'un driver export
|
|
*/
|
|
function getDriverVersion($key)
|
|
{
|
|
return $this->driverversion[$key];
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|