dolibarr/htdocs/includes/modules/fichinter/modules_fichinter.php

138 lines
3.3 KiB
PHP
Raw Normal View History

<?php
2003-06-11 15:32:01 +02:00
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
2003-06-11 15:32:01 +02:00
*
* 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/fichinter/modules_fichinter.php
\ingroup ficheinter
\brief Fichier contenant la classe m<EFBFBD>re de generation des fiches interventions en PDF
et la classe m<EFBFBD>re de num<EFBFBD>rotation des fiches interventions
\version $Revision$
*/
/*! \class ModelePDFFicheinter
\brief Classe m<EFBFBD>re des mod<EFBFBD>les de fiche intervention
*/
class ModelePDFFicheinter extends FPDF
{
var $error='';
/*! \brief Constructeur
*/
function ModelePDFFicheinter()
{
}
/*!
\brief Renvoi le dernier message d'erreur de cr<EFBFBD>ation de fiche intervention
*/
function pdferror()
{
return $this->error;
}
}
/*! \class ModeleNumRefFicheinter
\brief Classe m<EFBFBD>re des mod<EFBFBD>les de num<EFBFBD>rotation des r<EFBFBD>f<EFBFBD>rences de fiches d'intervention
*/
class ModeleNumRefFicheinter
{
var $error='';
/*! \brief Renvoi la description par defaut du modele de num<EFBFBD>rotation
* \return string Texte descripif
*/
function info()
{
global $langs;
$langs->load("ficheinter");
return $langs->trans("NoDescription");
}
/*! \brief Renvoi un exemple de num<EFBFBD>rotation
* \return string Example
*/
function getExample()
{
global $langs;
$langs->load("ficheinter");
return $langs->trans("NoExample");
}
/*!
\brief Renvoi le dernier message d'erreur de cr<EFBFBD>ation de fiche intervention
*/
function numreferror()
{
return $this->error;
}
}
/*!
\brief Cr<EFBFBD>e une fiche intervention sur disque en fonction du mod<EFBFBD>le de FICHEINTER_ADDON_PDF
\param db objet base de donn<EFBFBD>e
\param facid id de la facture <EFBFBD> cr<EFBFBD>er
*/
2003-06-11 15:32:01 +02:00
function fichinter_pdf_create($db, $facid)
{
global $langs;
$langs->load("ficheinter");
2003-06-11 15:32:01 +02:00
2003-06-23 16:13:39 +02:00
$dir = DOL_DOCUMENT_ROOT."/includes/modules/fichinter/";
2003-06-11 15:32:01 +02:00
if (defined("FICHEINTER_ADDON_PDF") && FICHEINTER_ADDON_PDF)
2003-06-11 15:32:01 +02:00
{
$file = "pdf_".FICHEINTER_ADDON_PDF.".modules.php";
$classname = "pdf_".FICHEINTER_ADDON_PDF;
require_once($dir.$file);
$obj = new $classname($db);
if ( $obj->write_pdf_file($facid) > 0)
{
return 1;
}
else
{
dolibarr_print_error($db,$obj->pdferror());
return 0;
}
2003-06-11 15:32:01 +02:00
}
else
{
print $langs->trans("Error")." ".$langs->trans("Error_FICHEINTER_ADDON_PDF_NotDefined");
2003-06-11 15:32:01 +02:00
return 0;
}
}
?>