This commit is contained in:
Laurent Destailleur 2012-03-15 09:26:14 +01:00
parent f96a72b090
commit d76802630a
7 changed files with 172 additions and 11 deletions

View File

@ -27,6 +27,9 @@
* \brief File of class to manage contract numbering * \brief File of class to manage contract numbering
*/ */
/**
* Parent class for all contract numbering modules
*/
class ModelNumRefContracts class ModelNumRefContracts
{ {
var $error=''; var $error='';

View File

@ -156,7 +156,7 @@ function don_create($db, $id, $message, $modele, $outputlangs)
$dir = DOL_DOCUMENT_ROOT . "/core/modules/dons/"; $dir = DOL_DOCUMENT_ROOT . "/core/modules/dons/";
// Positionne modele sur le nom du modele <20> utiliser // Set template to use
if (! dol_strlen($modele)) if (! dol_strlen($modele))
{ {
if ($conf->global->DON_ADDON_MODEL) if ($conf->global->DON_ADDON_MODEL)

View File

@ -72,36 +72,71 @@ class ExportCsv extends ModeleExports
} }
/**
* getDriverId
*
* @return int
*/
function getDriverId() function getDriverId()
{ {
return $this->id; return $this->id;
} }
/**
* getDriverLabel
*
* @return string
*/
function getDriverLabel() function getDriverLabel()
{ {
return $this->label; return $this->label;
} }
/**
* getDriverDesc
*
* @return string
*/
function getDriverDesc() function getDriverDesc()
{ {
return $this->desc; return $this->desc;
} }
/**
* getDriverExtension
*
* @return string
*/
function getDriverExtension() function getDriverExtension()
{ {
return $this->extension; return $this->extension;
} }
/**
* getDriverVersion
*
* @return string
*/
function getDriverVersion() function getDriverVersion()
{ {
return $this->version; return $this->version;
} }
/**
* getLabelLabel
*
* @return string
*/
function getLibLabel() function getLibLabel()
{ {
return $this->label_lib; return $this->label_lib;
} }
/**
* getLibVersion
*
* @return string
*/
function getLibVersion() function getLibVersion()
{ {
return $this->version_lib; return $this->version_lib;

View File

@ -71,36 +71,71 @@ class ExportExcel extends ModeleExports
$this->row=0; $this->row=0;
} }
/**
* getDriverId
*
* @return int
*/
function getDriverId() function getDriverId()
{ {
return $this->id; return $this->id;
} }
/**
* getDriverLabel
*
* @return string
*/
function getDriverLabel() function getDriverLabel()
{ {
return $this->label; return $this->label;
} }
function getDriverDesc() /**
* getDriverDesc
*
* @return string
*/
function getDriverDesc()
{ {
return $this->desc; return $this->desc;
} }
function getDriverExtension() /**
* getDriverExtension
*
* @return string
*/
function getDriverExtension()
{ {
return $this->extension; return $this->extension;
} }
/**
* getDriverVersion
*
* @return string
*/
function getDriverVersion() function getDriverVersion()
{ {
return $this->version; return $this->version;
} }
/**
* getLibLabel
*
* @return string
*/
function getLibLabel() function getLibLabel()
{ {
return $this->label_lib; return $this->label_lib;
} }
/**
* getLibVersion
*
* @return string
*/
function getLibVersion() function getLibVersion()
{ {
return $this->version_lib; return $this->version_lib;

View File

@ -72,36 +72,71 @@ class ExportExcel2007 extends ExportExcel
$this->row=0; $this->row=0;
} }
/**
* getDriverLabel
*
* @return int
*/
function getDriverId() function getDriverId()
{ {
return $this->id; return $this->id;
} }
/**
* getDriverLabel
*
* @return string
*/
function getDriverLabel() function getDriverLabel()
{ {
return $this->label; return $this->label;
} }
function getDriverDesc() /**
* getDriverDesc
*
* @return string
*/
function getDriverDesc()
{ {
return $this->desc; return $this->desc;
} }
function getDriverExtension() /**
* getDriverExtension
*
* @return string
*/
function getDriverExtension()
{ {
return $this->extension; return $this->extension;
} }
/**
* getDriverVersion
*
* @return string
*/
function getDriverVersion() function getDriverVersion()
{ {
return $this->version; return $this->version;
} }
/**
* getLibLabel
*
* @return string
*/
function getLibLabel() function getLibLabel()
{ {
return $this->label_lib; return $this->label_lib;
} }
/**
* getLibVersion
*
* @return string
*/
function getLibVersion() function getLibVersion()
{ {
return $this->version_lib; return $this->version_lib;

View File

@ -66,36 +66,71 @@ class ExportTsv extends ModeleExports
$this->version_lib=DOL_VERSION; $this->version_lib=DOL_VERSION;
} }
/**
* getDriverId
*
* @return int
*/
function getDriverId() function getDriverId()
{ {
return $this->id; return $this->id;
} }
/**
* getDriverLabel
*
* @return string
*/
function getDriverLabel() function getDriverLabel()
{ {
return $this->label; return $this->label;
} }
/**
* getDriverDesc
*
* @return string
*/
function getDriverDesc() function getDriverDesc()
{ {
return $this->desc; return $this->desc;
} }
/**
* getDriverExtension
*
* @return string
*/
function getDriverExtension() function getDriverExtension()
{ {
return $this->extension; return $this->extension;
} }
/**
* getDriverVersion
*
* @return string
*/
function getDriverVersion() function getDriverVersion()
{ {
return $this->version; return $this->version;
} }
/**
* getLibLabel
*
* @return string
*/
function getLibLabel() function getLibLabel()
{ {
return $this->label_lib; return $this->label_lib;
} }
/**
* getLibVersion
*
* @return string
*/
function getLibVersion() function getLibVersion()
{ {
return $this->version_lib; return $this->version_lib;

View File

@ -92,7 +92,10 @@ class ModeleExports extends CommonDocGenerator // This class can't be abstrac
/** /**
* \brief Return picto of export driver * Return picto of export driver
*
* @param string $key Key of driver
* @return string Picto string
*/ */
function getPicto($key) function getPicto($key)
{ {
@ -100,7 +103,10 @@ class ModeleExports extends CommonDocGenerator // This class can't be abstrac
} }
/** /**
* \brief Renvoi libelle d'un driver export * Renvoi libelle d'un driver export
*
* @param string $key Key of driver
* @return string Label
*/ */
function getDriverLabel($key) function getDriverLabel($key)
{ {
@ -108,7 +114,10 @@ class ModeleExports extends CommonDocGenerator // This class can't be abstrac
} }
/** /**
* \brief Renvoi le descriptif d'un driver export * Renvoi le descriptif d'un driver export
*
* @param string $key Key of driver
* @return string Description
*/ */
function getDriverDesc($key) function getDriverDesc($key)
{ {
@ -116,7 +125,10 @@ class ModeleExports extends CommonDocGenerator // This class can't be abstrac
} }
/** /**
* \brief Renvoi version d'un driver export * Renvoi version d'un driver export
*
* @param string $key Key of driver
* @return string Driver version
*/ */
function getDriverVersion($key) function getDriverVersion($key)
{ {
@ -124,7 +136,10 @@ class ModeleExports extends CommonDocGenerator // This class can't be abstrac
} }
/** /**
* \brief Renvoi libelle de librairie externe du driver * Renvoi libelle de librairie externe du driver
*
* @param string $key Key of driver
* @return string Label of library
*/ */
function getLibLabel($key) function getLibLabel($key)
{ {
@ -132,7 +147,10 @@ class ModeleExports extends CommonDocGenerator // This class can't be abstrac
} }
/** /**
* \brief Renvoi version de librairie externe du driver * Renvoi version de librairie externe du driver
*
* @param string $key Key of driver
* @return string Version of library
*/ */
function getLibVersion($key) function getLibVersion($key)
{ {