Doxygen
This commit is contained in:
parent
dc86095c06
commit
96e9e088e3
@ -27,13 +27,16 @@ require_once(DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php');
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class ModeleShippingMethod
|
* Parent class for shipping method classes
|
||||||
* \brief Parent class for shipping method classes
|
|
||||||
*/
|
*/
|
||||||
class ModeleShippingMethod
|
class ModeleShippingMethod
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
function ModeleShippingMethod($db=0)
|
* Constructo
|
||||||
|
*
|
||||||
|
* @param DoliDB $db Database handler
|
||||||
|
*/
|
||||||
|
function ModeleShippingMethod($db)
|
||||||
{
|
{
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$this->name = "NOT DEFINED";
|
$this->name = "NOT DEFINED";
|
||||||
|
|||||||
@ -22,7 +22,9 @@
|
|||||||
*/
|
*/
|
||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage shipment Colsui
|
||||||
|
*/
|
||||||
class methode_expedition_colsui extends ModeleShippingMethod
|
class methode_expedition_colsui extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -22,6 +22,9 @@
|
|||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage shipment Enl
|
||||||
|
*/
|
||||||
class methode_expedition_enl extends ModeleShippingMethod
|
class methode_expedition_enl extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -23,6 +23,9 @@
|
|||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage shipment lettremax
|
||||||
|
*/
|
||||||
class methode_expedition_lettremax extends ModeleShippingMethod
|
class methode_expedition_lettremax extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -22,6 +22,9 @@
|
|||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class to manage shipment Trans
|
||||||
|
*/
|
||||||
class methode_expedition_trans extends ModeleShippingMethod
|
class methode_expedition_trans extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|||||||
@ -62,10 +62,11 @@ class ModelePDFCards
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Cree un fichier de cartes de visites en fonction du modele de ADHERENT_CARDS_ADDON_PDF
|
* Cree un fichier de cartes de visites en fonction du modele de ADHERENT_CARDS_ADDON_PDF
|
||||||
* @param db Database handler
|
*
|
||||||
* @param arrayofmembers Array of members
|
* @param DoliDB $db Database handler
|
||||||
* @param modele Force modele to use ('' to not force)
|
* @param array $arrayofmembers Array of members
|
||||||
* @param outputlangs Objet langs to use for translation
|
* @param string $modele Force modele to use ('' to not force)
|
||||||
|
* @param Translate $outputlangs Objet langs to use for translation
|
||||||
* @return int <0 if KO, >0 if OK
|
* @return int <0 if KO, >0 if OK
|
||||||
*/
|
*/
|
||||||
function members_card_pdf_create($db, $arrayofmembers, $modele, $outputlangs)
|
function members_card_pdf_create($db, $arrayofmembers, $modele, $outputlangs)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user