Changeset 96545 in spip-zone
- Timestamp:
- Apr 8, 2016, 1:00:53 PM (5 years ago)
- Location:
- _plugins_/commandes/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/commandes/trunk/action/editer_commande.php
r96543 r96545 58 58 * Les notifications par email sont traitées après l'insertion en base et l'appel des pipelines 59 59 * 60 * @uses traiter_notifications_commande()60 * @uses commandes_notifier() 61 61 * 62 62 * @pipeline_appel pre_insertion … … 122 122 spip_log("inserer_commande : appel des notifications pour la commande $id_commande",'commandes.'._LOG_INFO); 123 123 include_spip('inc/commandes'); 124 traiter_notifications_commande($id_commande);124 commandes_notifier($id_commande); 125 125 126 126 } … … 196 196 * 197 197 * @uses editer_commande_details() 198 * @uses traiter_notifications_commande()198 * @uses commandes_notifier() 199 199 * 200 200 * @pipeline_appel pre_edition … … 292 292 // Envoi des notifications par email 293 293 spip_log("instituer_commande : appel des notifications pour la commande $id_commande",'commandes.'._LOG_INFO); 294 traiter_notifications_commande($id_commande);294 commandes_notifier($id_commande); 295 295 296 296 return ''; // pas d'erreur -
_plugins_/commandes/trunk/inc/commandes.php
r96544 r96545 251 251 * @return void 252 252 */ 253 function traiter_notifications_commande($id_commande=0){253 function commandes_notifier($id_commande=0){ 254 254 255 255 if (intval($id_commande)==0) return; … … 288 288 } 289 289 } 290 291 /** 292 * legacy 293 * @uses commandes_notifier() 294 * @param int $id_commande 295 */ 296 function traiter_notifications_commande($id_commande=0){ 297 return commandes_notifier($id_commande); 298 } -
_plugins_/commandes/trunk/paquet.xml
r96543 r96545 2 2 prefix="commandes" 3 3 categorie="divers" 4 version="1.8. 0"4 version="1.8.1" 5 5 etat="stable" 6 6 compatibilite="[3.0.5;3.1.*]"
Note: See TracChangeset
for help on using the changeset viewer.