mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 09:38:23 +01:00
Doxygen
This commit is contained in:
@@ -625,6 +625,7 @@ EXCLUDE = ../../mssql \
|
|||||||
../../htdocs/includes/adodbtime \
|
../../htdocs/includes/adodbtime \
|
||||||
../../htdocs/includes/artichow \
|
../../htdocs/includes/artichow \
|
||||||
../../htdocs/includes/barcode \
|
../../htdocs/includes/barcode \
|
||||||
|
../../htdocs/includes/ckeditor \
|
||||||
../../htdocs/includes/efc_xfss \
|
../../htdocs/includes/efc_xfss \
|
||||||
../../htdocs/includes/fckeditor \
|
../../htdocs/includes/fckeditor \
|
||||||
../../htdocs/includes/fpdf \
|
../../htdocs/includes/fpdf \
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ print "Makepack langs version $VERSION\n";
|
|||||||
print "Enter language code to package (en_US, fr_FR, ...) : ";
|
print "Enter language code to package (en_US, fr_FR, ...) : ";
|
||||||
$PROJECT=<STDIN>;
|
$PROJECT=<STDIN>;
|
||||||
chomp($PROJECT);
|
chomp($PROJECT);
|
||||||
# \todo Autodetect version
|
# TODO Autodetect version
|
||||||
# Ask and set version $MAJOR and $MINOR
|
# Ask and set version $MAJOR and $MINOR
|
||||||
print "Enter value for version: ";
|
print "Enter value for version: ";
|
||||||
$PROJVERSION=<STDIN>;
|
$PROJVERSION=<STDIN>;
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ print "Makepack theme version $VERSION\n";
|
|||||||
print "Enter name of theme to package: ";
|
print "Enter name of theme to package: ";
|
||||||
$PROJECT=<STDIN>;
|
$PROJECT=<STDIN>;
|
||||||
chomp($PROJECT);
|
chomp($PROJECT);
|
||||||
# \todo Autodetect version
|
# TODO Autodetect version
|
||||||
# Ask and set version $MAJOR and $MINOR
|
# Ask and set version $MAJOR and $MINOR
|
||||||
print "Enter value for version: ";
|
print "Enter value for version: ";
|
||||||
$PROJVERSION=<STDIN>;
|
$PROJVERSION=<STDIN>;
|
||||||
|
|||||||
@@ -25,19 +25,18 @@
|
|||||||
* et la classe mere de numerotation des bons de livraisons
|
* et la classe mere de numerotation des bons de livraisons
|
||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once(DOL_DOCUMENT_ROOT.'/lib/pdf.lib.php');
|
require_once(DOL_DOCUMENT_ROOT.'/lib/pdf.lib.php');
|
||||||
require_once(DOL_DOCUMENT_ROOT.'/includes/fpdf/fpdfi/fpdi_protection.php');
|
require_once(DOL_DOCUMENT_ROOT.'/includes/fpdf/fpdfi/fpdi_protection.php');
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \class methode_expedition
|
* \class ModeleShippingMethod
|
||||||
* \brief Classe mere des methodes expeditions
|
* \brief Parent class for shipping method classes
|
||||||
*/
|
*/
|
||||||
class methode_expedition
|
class ModeleShippingMethod
|
||||||
{
|
{
|
||||||
|
|
||||||
function methode_expedition($db=0)
|
function ModeleShippingMethod($db=0)
|
||||||
{
|
{
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$this->name = "NOT DEFINED";
|
$this->name = "NOT DEFINED";
|
||||||
@@ -46,8 +45,8 @@ class methode_expedition
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Return list of active generation modules
|
* Return list of active generation modules
|
||||||
* \param $db Database handler
|
* @param $db Database handler
|
||||||
*/
|
*/
|
||||||
function liste_modeles($db)
|
function liste_modeles($db)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,29 +16,30 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/**
|
||||||
|
* \file htdocs/includes/modules/expedition/methode_expedition_colsui.modules.php
|
||||||
|
* \ingroup expedition
|
||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
|
||||||
Class methode_expedition_colsui extends methode_expedition
|
class methode_expedition_colsui extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
|
|
||||||
function methode_expedition_colsui($db=0)
|
function methode_expedition_colsui($db=0)
|
||||||
{
|
{
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$this->id = 3; // Do not change this value
|
$this->id = 3; // Do not change this value
|
||||||
$this->code = "COLSUI"; // Do not change this value
|
$this->code = "COLSUI"; // Do not change this value
|
||||||
$this->name = "Colissimo Suivi";
|
$this->name = "Colissimo Suivi";
|
||||||
$this->description = "Colissimo Suivi";
|
$this->description = "Colissimo Suivi";
|
||||||
}
|
}
|
||||||
|
|
||||||
Function provider_url_status($tracking_number)
|
function provider_url_status($tracking_number)
|
||||||
{
|
{
|
||||||
return sprintf("http://www.coliposte.net/particulier/suivi_particulier.jsp?colispart=%s",$tracking_number);
|
return sprintf("http://www.coliposte.net/particulier/suivi_particulier.jsp?colispart=%s",$tracking_number);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -15,14 +15,15 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/**
|
||||||
|
* \file htdocs/includes/modules/expedition/methode_expedition_enl.modules.php
|
||||||
|
* \ingroup expedition
|
||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
|
||||||
Class methode_expedition_enl extends methode_expedition
|
class methode_expedition_enl extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
|
|
||||||
function methode_expedition_enl($db=0)
|
function methode_expedition_enl($db=0)
|
||||||
@@ -34,11 +35,11 @@ Class methode_expedition_enl extends methode_expedition
|
|||||||
$this->code = "ENL";
|
$this->code = "ENL";
|
||||||
$this->description = $langs->trans("Enlevement");
|
$this->description = $langs->trans("Enlevement");
|
||||||
}
|
}
|
||||||
|
|
||||||
Function provider_url_status($tracking_number)
|
Function provider_url_status($tracking_number)
|
||||||
{
|
{
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -15,31 +15,32 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/**
|
||||||
|
* \file htdocs/includes/modules/expedition/methode_expedition_trans.modules.php
|
||||||
|
* \ingroup expedition
|
||||||
* \version $Id$
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
include_once "methode_expedition.modules.php";
|
include_once "methode_expedition.modules.php";
|
||||||
|
|
||||||
|
|
||||||
Class methode_expedition_trans extends methode_expedition
|
class methode_expedition_trans extends ModeleShippingMethod
|
||||||
{
|
{
|
||||||
|
|
||||||
function methode_expedition_trans($db=0)
|
function methode_expedition_trans($db=0)
|
||||||
{
|
{
|
||||||
global $langs;
|
global $langs;
|
||||||
|
|
||||||
$this->db = $db;
|
$this->db = $db;
|
||||||
$this->id = 2; // Ne pas changer cette valeur
|
$this->id = 2; // Ne pas changer cette valeur
|
||||||
$this->code = "TRANS";
|
$this->code = "TRANS";
|
||||||
$this->name = "Transporteur";
|
$this->name = "Transporteur";
|
||||||
$this->description = $langs->trans("GenericTransport");
|
$this->description = $langs->trans("GenericTransport");
|
||||||
}
|
}
|
||||||
|
|
||||||
Function provider_url_status($tracking_number)
|
Function provider_url_status($tracking_number)
|
||||||
{
|
{
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user