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

256 lines
6.4 KiB
PHP
Raw Permalink Normal View History

<?php
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
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/
*/
2008-10-28 21:05:23 +01:00
/**
\file htdocs/includes/modules/fichinter/modules_fichinter.php
\ingroup ficheinter
2009-10-29 08:39:16 +01:00
\brief Fichier contenant la classe mere de generation des fiches interventions en PDF
et la classe mere de numerotation des fiches interventions
2008-10-28 21:05:23 +01:00
\version $Id$
*/
require_once(DOL_DOCUMENT_ROOT.'/lib/pdf.lib.php');
require_once(DOL_DOCUMENT_ROOT.'/includes/fpdf/fpdfi/fpdi_protection.php');
/**
* \class ModelePDFFicheinter
* \brief Classe mere des modeles de fiche intervention
2008-10-28 21:05:23 +01:00
*/
class ModelePDFFicheinter
{
2008-10-28 21:05:23 +01:00
var $error='';
/**
* \brief Constructeur
2008-10-28 21:05:23 +01:00
*/
function ModelePDFFicheinter()
{
}
/**
* \brief Return list of active generation modules
* \param $db Database handler
2008-10-28 21:05:23 +01:00
*/
function liste_modeles($db)
{
global $conf;
2008-10-28 21:05:23 +01:00
$type='ficheinter';
$liste=array();
include_once(DOL_DOCUMENT_ROOT.'/lib/functions2.lib.php');
$liste=getListOfModels($db,$type,'');
2008-10-28 21:05:23 +01:00
return $liste;
}
}
/**
2008-10-28 21:05:23 +01:00
\class ModeleNumRefFicheinter
2009-10-29 08:39:16 +01:00
\brief Classe mere des modeles de numerotation des references de fiches d'intervention
2008-10-28 21:05:23 +01:00
*/
class ModeleNumRefFicheinter
{
2008-10-28 21:05:23 +01:00
var $error='';
/** \brief Return if a module can be used or not
2008-10-28 21:05:23 +01:00
* \return boolean true if module can be used
*/
function isEnabled()
{
return true;
}
2009-10-29 08:39:16 +01:00
/** \brief Renvoi la description par defaut du modele de numerotation
2008-10-28 21:05:23 +01:00
* \return string Texte descripif
*/
function info()
{
global $langs;
$langs->load("ficheinter");
return $langs->trans("NoDescription");
}
2009-10-29 08:39:16 +01:00
/** \brief Renvoi un exemple de numerotation
2008-10-28 21:05:23 +01:00
* \return string Example
*/
function getExample()
{
global $langs;
$langs->load("ficheinter");
return $langs->trans("NoExample");
}
2009-10-29 08:39:16 +01:00
/** \brief Test si les numeros deja en vigueur dans la base ne provoquent pas de
* de conflits qui empechera cette numerotation de fonctionner.
2008-10-28 21:05:23 +01:00
* \return boolean false si conflit, true si ok
*/
function canBeActivated()
{
return true;
}
2009-10-29 08:39:16 +01:00
/** \brief Renvoi prochaine valeur attribuee
2008-10-28 21:05:23 +01:00
* \return string Valeur
*/
function getNextValue()
{
global $langs;
return $langs->trans("NotAvailable");
}
/** \brief Renvoi version du module numerotation
2008-10-28 21:05:23 +01:00
* \return string Valeur
*/
function getVersion()
{
global $langs;
$langs->load("admin");
if ($this->version == 'development') return $langs->trans("VersionDevelopment");
if ($this->version == 'experimental') return $langs->trans("VersionExperimental");
if ($this->version == 'dolibarr') return DOL_VERSION;
return $langs->trans("NotAvailable");
2008-10-28 21:05:23 +01:00
}
}
/**
2010-10-23 19:03:08 +02:00
* Create an intervention document on disk using template defined into FICHEINTER_ADDON_PDF
* @param db objet base de donnee
* @param object Object fichinter
* @param modele force le modele a utiliser ('' par defaut)
* @param outputlangs objet lang a utiliser pour traduction
* @return int 0 si KO, 1 si OK
2008-10-28 21:05:23 +01:00
*/
function fichinter_create($db, $object, $modele='', $outputlangs='')
2003-06-11 15:32:01 +02:00
{
global $conf,$langs;
$langs->load("ficheinter");
2008-10-28 21:05:23 +01:00
$dir = DOL_DOCUMENT_ROOT."/includes/modules/fichinter/";
2008-10-28 21:05:23 +01:00
2009-10-29 08:39:16 +01:00
// Positionne modele sur le nom du modele de facture a utiliser
if (! dol_strlen($modele))
{
if ($conf->global->FICHEINTER_ADDON_PDF)
{
$modele = $conf->global->FICHEINTER_ADDON_PDF;
}
else
{
2010-10-23 19:03:08 +02:00
$modele = 'soleil';
//dol_syslog("Error ".$langs->trans("Error_FICHEINTER_ADDON_PDF_NotDefined"), LOG_ERR);
//print "Error ".$langs->trans("Error_FICHEINTER_ADDON_PDF_NotDefined");
//return 0;
}
}
2008-10-28 21:05:23 +01:00
// Charge le modele
$file = "pdf_".$modele.".modules.php";
if (file_exists($dir.$file))
{
$classname = "pdf_".$modele;
require_once($dir.$file);
2008-10-28 21:05:23 +01:00
$obj = new $classname($db);
2008-10-28 21:05:23 +01:00
dol_syslog("fichinter_create build PDF", LOG_DEBUG);
2008-10-28 21:05:23 +01:00
// We save charset_output to restore it because write_file can change it if needed for
// output format that does not support UTF8.
$sav_charset_output=$outputlangs->charset_output;
if ($obj->write_file($object,$outputlangs) > 0)
{
2008-10-28 21:05:23 +01:00
$outputlangs->charset_output=$sav_charset_output;
return 1;
}
else
{
2008-10-28 21:05:23 +01:00
$outputlangs->charset_output=$sav_charset_output;
dol_print_error($db,$obj->error);
return 0;
}
}
else
{
print $langs->trans("Error")." ".$langs->trans("ErrorFileDoesNotExists",$dir.$file);
return 0;
}
2003-06-11 15:32:01 +02:00
}
/**
2009-10-29 08:39:16 +01:00
* \brief Deletes the image preview, in case of regeneration
* \param db database object
* \param fichinterid id to delete
* \param fichinterref reference if needed
2008-10-28 21:05:23 +01:00
*/
function fichinter_delete_preview($db, $fichinterid, $fichinterref='')
{
global $langs,$conf;
2008-10-28 21:05:23 +01:00
if (!$fichinterref)
2008-10-28 21:05:23 +01:00
{
$fichinter = new Fichinter($db,"",$fichinterid);
$fichinter->fetch($fichinterid);
$fichinterref = $fichinter->ref;
}
if ($conf->ficheinter->dir_output)
2008-10-28 21:05:23 +01:00
{
$fichinterref = dol_sanitizeFileName($fichinterref);
$dir = $conf->ficheinter->dir_output . "/" . $fichinterref ;
2008-10-28 21:05:23 +01:00
$file = $dir . "/" . $fichinterref . ".pdf.png";
$multiple = $file . ".";
if ( file_exists( $file ) && is_writable( $file ) )
{
if ( ! dol_delete_file($file,1) )
2008-10-28 21:05:23 +01:00
{
$this->error=$langs->trans("ErrorFailedToOpenFile",$file);
return 0;
}
}
else
{
for ($i = 0; $i < 20; $i++)
{
$preview = $multiple.$i;
if ( file_exists( $preview ) && is_writable( $preview ) )
{
if ( ! dol_delete_file($preview,1) )
2008-10-28 21:05:23 +01:00
{
$this->error=$langs->trans("ErrorFailedToOpenFile",$preview);
return 0;
}
}
}
}
}
return 1;
}
2009-10-29 08:39:16 +01:00
?>