From 3072f89f8dd1157a42a87fa215587f0754d835bf Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sat, 9 Dec 2006 14:17:49 +0000 Subject: [PATCH] Nouveau fichier --- htdocs/includes/triggers/README | 8 + .../interface_editeur.class.php-NORUN | 150 ++++++++++++++++++ 2 files changed, 158 insertions(+) create mode 100644 htdocs/includes/triggers/README create mode 100644 htdocs/includes/triggers/interface_editeur.class.php-NORUN diff --git a/htdocs/includes/triggers/README b/htdocs/includes/triggers/README new file mode 100644 index 00000000000..72b7b1df2c0 --- /dev/null +++ b/htdocs/includes/triggers/README @@ -0,0 +1,8 @@ +Ce répertoire contient tous les triggers disponibles. + +Le nom de certain trigger se termine par -NORUN ce qui signigie que ceux-ci +ne seront pas éxécutés, si vous souhiatez les utiliser il suffit de rennommer +ceux-ci en supprimant -NORUN de leur nom. + + +$Id$ \ No newline at end of file diff --git a/htdocs/includes/triggers/interface_editeur.class.php-NORUN b/htdocs/includes/triggers/interface_editeur.class.php-NORUN new file mode 100644 index 00000000000..3723a11a29e --- /dev/null +++ b/htdocs/includes/triggers/interface_editeur.class.php-NORUN @@ -0,0 +1,150 @@ + + * + * 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, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ + * $Source$ + */ + +/** + \file htdocs/includes/triggers/interface_demo.class.php + \ingroup core + \brief Fichier de demo de personalisation des actions du workflow + \remarks Son propre fichier d'actions peut etre créé par recopie de celui-ci: + - Le nom du fichier doit etre interface_xxx.class.php + - Le fichier doit rester stocké dans includes/triggers + - Le nom de la classe doit etre InterfaceXxx +*/ + + +/** + \class InterfaceEditeur + \brief Classe des fonctions triggers des actions personalisées du workflow +*/ + +class InterfaceEditeur +{ + var $db; + var $error; + + /** + * \brief Constructeur. + * \param DB Handler d'accès base + */ + function InterfaceEditeur($DB) + { + $this->db = $DB ; + + $this->name = "Editeur"; + $this->family = "editeur"; + $this->description = "Les triggers de ce composant s'appliquent sur les utilisateurs."; + $this->revision = explode(' ','$Revision$'); + $this->version = $this->revision[1]; + } + + /** + * \brief Renvoi nom du lot de triggers + * \return string Nom du lot de triggers + */ + function getName() + { + return $this->name; + } + + /** + * \brief Renvoi descriptif du lot de triggers + * \return string Descriptif du lot de triggers + */ + function getDesc() + { + return $this->description; + } + + /** + * \brief Renvoi version du lot de triggers + * \return string Version du lot de triggers + */ + function getVersion() + { + global $langs; + $langs->load("admin"); + + if ($this->version == 'experimental') return $langs->trans("Experimental"); + elseif ($this->version == 'dolibarr') return DOL_VERSION; + elseif ($this->version) return $this->version; + else return $langs->trans("Unknown"); + } + + /** + * \brief Fonction appelée lors du déclenchement d'un évènement Dolibarr. + * D'autres fonctions run_trigger peuvent etre présentes dans includes/triggers + * \param action Code de l'evenement + * \param object Objet concern + * \param user Objet user + * \param lang Objet lang + * \param conf Objet conf + * \return int <0 si ko, 0 si aucune action faite, >0 si ok + */ + function run_trigger($action,$object,$user,$langs,$conf) + { + // Mettre ici le code à exécuter en réaction de l'action + // Les données de l'action sont stockées dans $object + + // Users + if ($action == 'LINEBILL_INSERT') + { + dolibarr_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id); + + $sql = "SELECT fd.rowid"; + $sql.= " FROM ".MAIN_DB_PREFIX."product as p,".MAIN_DB_PREFIX."facturedet as fd"; + $sql.= " WHERE fd.fk_product = p.rowid"; + $sql.= " AND fd.fk_facture = '".$object->fk_facture."'"; + $sql.= " ORDER BY p.stock_loc ASC;"; + + $resql = $this->db->query($sql) ; + + if ($resql) + { + $datas = array(); + $i = 1; + while ( $row = $this->db->fetch_row($resql) ) + { + $datas[$i] = $row[0]; + $i++; + } + + foreach($datas as $key => $value) + { + $sql = "UPDATE ".MAIN_DB_PREFIX."facturedet "; + $sql.= " SET rang=$key WHERE rowid=$value"; + $resql = $this->db->query($sql) ; + } + } + else + { + dolibarr_syslog("Trigger '".$this->name."' in action '$action' SQL ERROR "); + } + } + else + { + dolibarr_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id); + return -1; + } + return 0; + + } +} +?>