mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2008 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2008 Bearstech - http://bearstech.com/
|
|
*
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/includes/modules/expedition/methode_expedition_colsui.modules.php
|
|
* \ingroup expedition
|
|
* \version $Id$
|
|
*/
|
|
include_once "methode_expedition.modules.php";
|
|
|
|
|
|
class methode_expedition_colsui extends ModeleShippingMethod
|
|
{
|
|
|
|
function methode_expedition_colsui($db=0)
|
|
{
|
|
$this->db = $db;
|
|
$this->id = 3; // Do not change this value
|
|
$this->code = "COLSUI"; // Do not change this value
|
|
$this->name = "Colissimo Suivi";
|
|
$this->description = "Colissimo Suivi";
|
|
}
|
|
|
|
function provider_url_status($tracking_number)
|
|
{
|
|
return sprintf("http://www.coliposte.net/particulier/suivi_particulier.jsp?colispart=%s",$tracking_number);
|
|
}
|
|
}
|
|
|
|
?>
|