You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
398 B
18 lines
398 B
<?php |
|
/** |
|
* Fonctions utiles au plugin Livraison |
|
* |
|
* @plugin Livraison |
|
* @copyright 2015 |
|
* @author Cédric |
|
* @licence GNU/GPL |
|
* @package SPIP\Livraison\Fonctions |
|
*/ |
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) return; |
|
|
|
function filtre_commande_livraison_necessaire_dist($id_commande){ |
|
include_spip('inc/livraison'); |
|
return (commande_livraison_necessaire($id_commande)?' ':''); |
|
} |
|
|
|
|