diff --git a/htdocs/telephonie/adsl/fiche.php b/htdocs/telephonie/adsl/fiche.php
new file mode 100644
index 00000000000..03220bef875
--- /dev/null
+++ b/htdocs/telephonie/adsl/fiche.php
@@ -0,0 +1,724 @@
+
+ *
+ * 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$
+ *
+ */
+
+require("./pre.inc.php");
+
+
+$mesg = '';
+
+$dt = time();
+
+$h = strftime("%H",$dt);
+$m = strftime("%M",$dt);
+$s = strftime("%S",$dt);
+
+if ($_POST["action"] == 'add')
+{
+ $ligne = new LigneAdsl($db);
+
+ $ligne->numero = $_POST["numero"];
+ $ligne->client = $_POST["client"];
+ $ligne->client_install = $_POST["client_install"];
+ $ligne->client_facture = $_POST["client_facture"];
+ $ligne->fournisseur = $_POST["fournisseur"];
+ $ligne->commercial = $_POST["commercial"];
+ $ligne->type = $_POST["type"];
+ $ligne->note = $_POST["note"];
+
+ if ( $ligne->create($user) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+ else
+ {
+ $_GET["action"] = 'create_line';
+ $_GET["client"] = $_POST["client"];
+ }
+
+}
+
+if ($_GET["action"] == 'delete' && $user->rights->telephonie->adsl->creer)
+{
+ $ligne = new LigneAdsl($db);
+
+ if ( $ligne->delete($_GET["id"]) == 0)
+ {
+ Header("Location: liste.php");
+ }
+
+}
+
+if ($_GET["action"] == 'ordertech')
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ if ( $ligne->set_statut($user, 1) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+
+}
+
+if ($_GET["action"] == 'cancelordertech')
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ if ( $ligne->set_statut($user, -1) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+
+}
+
+if ($_GET["action"] == 'refuse')
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ $datea = $db->idate(mktime($h, $m , $s,
+ $_POST["remonth"],
+ $_POST["reday"],
+ $_POST["reyear"]));
+
+ if ( $ligne->set_statut($user, 7, $datea, $_POST["commentaire"]) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+
+}
+
+if ($_GET["action"] == 'resilier')
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ if ( $ligne->set_statut($user, 4) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+}
+
+if ($_GET["action"] == 'annuleresilier')
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ if ( $ligne->set_statut($user, 3) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+}
+
+if ($_GET["action"] == 'commandefourn' && $user->rights->telephonie->adsl->commander)
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ $datea = $db->idate(mktime($h, $m , $s,
+ $_POST["remonth"],
+ $_POST["reday"],
+ $_POST["reyear"]));
+
+ if ( $ligne->set_statut($user, 2, $datea, $_POST["commentaire"]) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+}
+
+if ($_GET["action"] == 'activefourn' && $user->rights->telephonie->adsl->gerer)
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ $datea = $db->idate(mktime($h, $m , $s,
+ $_POST["remonth"],
+ $_POST["reday"],
+ $_POST["reyear"]));
+
+ $ligne->update_info($_POST["ip"], $_POST["login"], $_POST["password"]);
+
+
+ if ( $ligne->set_statut($user, 3, $datea, $_POST["commentaire"]) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+}
+
+if ($_GET["action"] == 'livraison' && $user->rights->telephonie->adsl->gerer)
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ $datea = $db->idate(mktime($h, $m , $s,
+ $_POST["remonth"],
+ $_POST["reday"],
+ $_POST["reyear"]));
+
+ if ( $ligne->set_statut($user, 4, $datea, $_POST["commentaire"]) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+}
+
+if ($_GET["action"] == 'acommander')
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->fetch_by_id($_GET["id"]);
+
+ if ( $ligne->set_statut($user, 1, '', $_POST["commentaire"]) == 0)
+ {
+ Header("Location: fiche.php?id=".$ligne->id);
+ }
+}
+
+
+if ($_POST["action"] == 'update' && $_POST["cancel"] <> $langs->trans("Cancel"))
+{
+ $ligne = new LigneAdsl($db);
+ $ligne->id = $_GET["id"];
+
+ $ligne->numero = $_POST["numero"];
+ $ligne->client_comm = $_POST["client_comm"];
+ $ligne->client = $_POST["client"];
+ $ligne->client_facture = $_POST["client_facture"];
+ $ligne->fournisseur = $_POST["fournisseur"];
+ $ligne->commercial = $_POST["commercial"];
+ $ligne->concurrent = $_POST["concurrent"];
+ $ligne->remise = $_POST["remise"];
+ $ligne->note = $_POST["note"];
+
+ if ( $ligne->update($user) )
+
+ {
+ $action = '';
+ $mesg = 'Fiche mise à jour';
+ }
+ else
+ {
+ $action = 're-edit';
+ $mesg = 'Fiche non mise à jour !' . "
" . $entrepot->mesg_error;
+ }
+}
+
+
+llxHeader("","","Fiche Liaison");
+
+if ($cancel == $langs->trans("Cancel"))
+{
+ $action = '';
+}
+
+/*
+ * Création en 2 étape
+ *
+ */
+if ($_GET["action"] == 'create')
+{
+ $form = new Form($db);
+ print_titre("Nouvelle liaison ADSL");
+
+ if (is_object($ligne))
+ {
+ // La création a échouée
+ print $ligne->error_message;
+ }
+ else
+ {
+ $ligne = new LigneAdsl($db);
+ }
+
+ print '
';
+}
+elseif ($_GET["action"] == 'create_line' && $_GET["client"] > 0)
+{
+ $form = new Form($db);
+ print_titre("Nouvelle liaison ADSL");
+
+ if (is_object($ligne))
+ {
+ // La création a échouée
+ print ''.$ligne->error_message.'
';
+ }
+ else
+ {
+ $ligne = new LigneAdsl($db);
+ $ligne->client_install_id = $_GET["client"];
+ $ligne->client_facture_id = $_GET["client"];
+ }
+
+ $socc = new Societe($db);
+ if ( $socc->fetch($_GET["client"]) == 1)
+ {
+
+ if (strlen($socc->code_client) == 0)
+ {
+ print '';
+ print '| Client | ';
+ print ''.$socc->nom.'';
+ print ' |
';
+
+ print '| Code client | ';
+ print $socc->code_client;
+ print ' |
';
+ print '
';
+ print 'Impossible de créer une ligne pour cette société, vous devez au préalablement lui affecter un code client.';
+ }
+ elseif (strlen($socc->code_client) > 0 && $socc->check_codeclient() <> 0)
+ {
+ print '';
+ print '| Client | ';
+ print ''.$socc->nom.'';
+ print ' |
';
+
+ print '| Code client | ';
+ print $socc->code_client;
+ print ' |
';
+ print '
';
+ print 'Le code client de cette société est incorrect, vous devez lui affecter un code client correct.';
+ }
+ else
+ {
+ print "';
+
+ }
+
+ }
+ else
+ {
+ print "Erreur";
+ }
+}
+else
+{
+ if ($_GET["id"] or $_GET["numero"])
+ {
+ if ($_GET["action"] <> 're-edit')
+ {
+ $ligne = new LigneAdsl($db);
+ if ($_GET["id"])
+ {
+ $result = $ligne->fetch_by_id($_GET["id"]);
+ }
+ if ($_GET["numero"])
+ {
+ $result = $ligne->fetch($_GET["numero"]);
+ }
+ }
+
+ if ( $result )
+ {
+ if ($_GET["action"] <> 'edit' && $_GET["action"] <> 're-edit')
+ {
+
+ $h=0;
+ $head[$h][0] = DOL_URL_ROOT."/telephonie/adsl/fiche.php?id=".$ligne->id;
+ $head[$h][1] = $langs->trans("Liaison ADSL");
+ $hselected = $h;
+ $h++;
+
+ $head[$h][0] = DOL_URL_ROOT."/telephonie/adsl/history.php?id=".$ligne->id;
+ $head[$h][1] = $langs->trans('Historique');
+ $h++;
+
+ dolibarr_fiche_head($head, $hselected, 'Liaison ADSL : '.$ligne->numero);
+
+ print_fiche_titre('Fiche Liaison ADSL', $mesg);
+
+ print '';
+
+ $client = new Societe($db, $ligne->client_id);
+ $client->fetch($ligne->client_id);
+
+ print '| Client | ';
+ print '';
+
+ print $client->nom.' | '.$client->code_client;
+ print ' |
';
+
+ print '| Numéro | '.dolibarr_print_phone($ligne->numero).' | ';
+ print ' |
';
+
+ print '| Débit de la liaison | '.$ligne->type.' |
';
+
+ $client_install = new Societe($db, $ligne->client_install_id);
+ $client_install->fetch($ligne->client_install_id);
+
+ print '| Client (Agence/Filiale) | ';
+ print $client_install->nom.' ';
+
+ print $client_install->cp . " " .$client_install->ville;
+ print ' |
';
+
+ $client_facture = new Societe($db);
+ $client_facture->fetch($ligne->client_facture_id);
+
+ print '| Client Facturé | ';
+ print $client_facture->nom.' ';
+ print $client_facture->cp . " " .$client_facture->ville;
+
+ print ' | ';
+
+ if ($ligne->mode_paiement == 'pre')
+ {
+ print 'RIB : '.$client_facture->display_rib();
+ }
+ else
+ {
+ print 'Paiement par virement';
+ }
+
+ print ' |
';
+
+ $commercial = new User($db, $ligne->commercial_id);
+ $commercial->fetch();
+
+ print '| Commercial | ';
+ print ''.$commercial->fullname.' |
';
+
+
+ if ( $user->rights->telephonie->adsl->gerer)
+ {
+ print '| IP | '.$ligne->ip.' |
';
+ print '| Login | '.$ligne->login.' |
';
+ print '| Password | '.$ligne->password.' |
';
+ }
+
+ print '| Statut | ';
+ print ' ';
+ print $ligne->statuts[$ligne->statut];
+ print ' |
';
+
+
+
+ print "
";
+ }
+
+ print '';
+
+ }
+ }
+ else
+ {
+ print "Error";
+ }
+}
+
+
+if ( $user->rights->telephonie->adsl->commander && $ligne->statut == 1)
+{
+ /**
+ *
+ */
+ $form = new Form($db);
+
+ print '| ';
+
+ print ' | ';
+
+ print ' |
';
+}
+
+if ( $user->rights->telephonie->adsl->gerer && $ligne->statut == 2)
+{
+ /**
+ *
+ */
+ $form = new Form($db);
+
+ print '| ';
+
+ print ' | ';
+
+ print ' |
';
+}
+
+if ( $user->rights->telephonie->adsl->gerer && $ligne->statut == 3)
+{
+ /**
+ *
+ */
+ $form = new Form($db);
+
+ print '| ';
+
+ print ' | ';
+ print ' |
';
+}
+
+
+/* ************************************************************************** */
+/* */
+/* Barre d'action */
+/* */
+/* ************************************************************************** */
+
+print "\n
\n";
+
+
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/adsl/history.php b/htdocs/telephonie/adsl/history.php
new file mode 100644
index 00000000000..f206d66060b
--- /dev/null
+++ b/htdocs/telephonie/adsl/history.php
@@ -0,0 +1,137 @@
+
+ *
+ * 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$
+ *
+ */
+
+require("./pre.inc.php");
+
+$mesg = '';
+
+llxHeader("","","Historique Liaison ADSL");
+
+/*
+ * Affichage
+ *
+ */
+
+if ($_GET["id"])
+{
+ if ($_GET["action"] <> 're-edit')
+ {
+ $ligne = new LigneADSL($db);
+
+ $result = $ligne->fetch_by_id($_GET["id"]);
+ }
+
+ if ( $result )
+ {
+ $h=0;
+ $head[$h][0] = DOL_URL_ROOT."/telephonie/adsl/fiche.php?id=".$ligne->id;
+ $head[$h][1] = $langs->trans("Liaison ADSL");
+ $h++;
+
+ $head[$h][0] = DOL_URL_ROOT."/telephonie/adsl/history.php?id=".$ligne->id;
+ $head[$h][1] = $langs->trans('Historique');
+ $hselected = $h;
+ $h++;
+
+ dolibarr_fiche_head($head, $hselected, 'Liaison ADSL : '.$ligne->numero);
+
+ print '';
+
+ print '| Numéro | '.dolibarr_print_phone($ligne->numero).' |
';
+
+
+ $client = new Societe($db, $ligne->client_id);
+ $client->fetch($ligne->client_id);
+
+ print '| Client | '.$client->nom.' |
';
+
+ print '| Statut | ';
+ print ' ';
+ print $ligne->statuts[$ligne->statut];
+ print ' |
';
+
+ /* Contacts */
+
+ $sql = "SELECT ".$db->pdate("l.tms").", l.statut, l.fk_user, u.name, u.firstname, l.comment";
+ $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_adsl_ligne_statut as l";
+ $sql .= ",".MAIN_DB_PREFIX."user as u";
+ $sql .= " WHERE u.rowid = l.fk_user AND l.fk_ligne = ".$ligne->id;
+ $sql .= " ORDER BY l.tms DESC ";
+ if ( $db->query( $sql) )
+ {
+ $num = $db->num_rows();
+ if ( $num > 0 )
+ {
+ $i = 0;
+ while ($i < $num)
+ {
+ $row = $db->fetch_row($i);
+
+ print '| '.strftime("%a %d %B %Y %H:%M:%S",$row[0]).' | ';
+
+ print ' ';
+ print $ligne->statuts[$row[1]];
+ if ($row[5])
+ {
+ print ' '.$row[5];
+ }
+
+ print ' | '.$row[4] . " " . $row[3] . " |
";
+ $i++;
+ }
+ }
+ $db->free();
+ }
+ else
+ {
+ print $sql;
+ }
+
+ /* Fin Contacts */
+
+ print "
";
+ }
+
+ /*
+ *
+ *
+ *
+ */
+
+}
+else
+{
+ print "Error";
+}
+
+
+/* ************************************************************************** */
+/* */
+/* Barre d'action */
+/* */
+/* ************************************************************************** */
+
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/adsl/index.php b/htdocs/telephonie/adsl/index.php
new file mode 100644
index 00000000000..e22a725bb57
--- /dev/null
+++ b/htdocs/telephonie/adsl/index.php
@@ -0,0 +1,121 @@
+
+ *
+ * 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$
+ *
+ */
+require("./pre.inc.php");
+
+$page = $_GET["page"];
+$sortorder = $_GET["sortorder"];
+
+if (!$user->rights->telephonie->lire)
+ accessforbidden();
+
+llxHeader('','Telephonie');
+
+/*
+ * Sécurité accés client
+ */
+if ($user->societe_id > 0)
+{
+ $action = '';
+ $socidp = $user->societe_id;
+}
+
+/*
+ * Mode Liste
+ *
+ *
+ *
+ */
+
+print '';
+
+print '| ';
+
+print ' | ';
+
+print ' |
';
+
+print '
';
+
+
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/adsl/liste.php b/htdocs/telephonie/adsl/liste.php
new file mode 100644
index 00000000000..08c293fc35e
--- /dev/null
+++ b/htdocs/telephonie/adsl/liste.php
@@ -0,0 +1,165 @@
+
+ *
+ * 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$
+ *
+ */
+require("./pre.inc.php");
+
+$page = $_GET["page"];
+$sortorder = $_GET["sortorder"];
+$sortfield = $_GET["sortfield"];
+
+llxHeader('','Telephonie - Ligne - Liste');
+/*
+ * Sécurité accés client
+ */
+if ($user->societe_id > 0)
+{
+ $action = '';
+ $socidp = $user->societe_id;
+}
+
+if ($sortorder == "") {
+ $sortorder="ASC";
+}
+if ($sortfield == "") {
+ $sortfield="s.nom";
+}
+
+/*
+ * Recherche
+ *
+ *
+ */
+
+if ($page == -1) { $page = 0 ; }
+
+$offset = $conf->liste_limit * $page ;
+$pageprev = $page - 1;
+$pagenext = $page + 1;
+
+/*
+ * Mode Liste
+ *
+ *
+ *
+ */
+
+$sql = "SELECT la.rowid, fk_client, s.nom as nom, la.numero_ligne, la.statut, t.intitule";
+$sql .= " , s.idp";
+$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_adsl_ligne as la";
+$sql .= " , ".MAIN_DB_PREFIX."societe as s";
+$sql .= " , ".MAIN_DB_PREFIX."telephonie_adsl_type as t";
+$sql .= " WHERE la.fk_client = s.idp";
+$sql .= " AND t.rowid = la.fk_type";
+
+if ($_GET["search_ligne"])
+{
+ $sel =urldecode($_GET["search_ligne"]);
+ $sel = ereg_replace("\.","",$sel);
+ $sel = ereg_replace(" ","",$sel);
+ $sql .= " AND la.numero_ligne LIKE '%".$sel."%'";
+}
+
+if ($_GET["search_client"])
+{
+ $sel =urldecode($_GET["search_client"]);
+ $sql .= " AND s.nom LIKE '%".$sel."%'";
+}
+
+if (strlen($_GET["statut"]))
+{
+ $sql .= " AND la.statut = ".$_GET["statut"];
+}
+
+$sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit+1, $offset);
+
+$result = $db->query($sql);
+if ($result)
+{
+ $num = $db->num_rows();
+ $i = 0;
+
+ $urladd= "&statut=".$_GET["statut"];
+
+ print_barre_liste("Liaisons ADSL", $page, "liste.php", $urladd, $sortfield, $sortorder, '', $num);
+ print"\n\n";
+ print '";
+ $db->free();
+}
+else
+{
+ print $db->error() . ' ' . $sql;
+}
+
+$db->close();
+
+llxFooter("Dernière modification $Date$ révision $Revision$");
+?>
diff --git a/htdocs/telephonie/adsl/pre.inc.php b/htdocs/telephonie/adsl/pre.inc.php
new file mode 100644
index 00000000000..ac8d3dbd178
--- /dev/null
+++ b/htdocs/telephonie/adsl/pre.inc.php
@@ -0,0 +1,48 @@
+
+ *
+ * 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$
+ *
+ */
+require("../../main.inc.php");
+require(DOL_DOCUMENT_ROOT."/telephonie/adsl/ligneadsl.class.php");
+$user->getrights('telephonie');
+
+function llxHeader($head = "", $title="") {
+ global $user, $conf;
+
+ /*
+ *
+ *
+ */
+ top_menu($head, $title);
+
+ $menu = new Menu();
+
+ $menu->add(DOL_URL_ROOT."/telephonie/adsl/index.php", "ADSL");
+
+ $menu->add_submenu(DOL_URL_ROOT."/telephonie/adsl/liste.php", "Liste");
+
+ $menu->add_submenu(DOL_URL_ROOT."/telephonie/adsl/fiche.php?action=create", "Nouvelle liaison");
+
+ $menu->add(DOL_URL_ROOT."/telephonie/index.php", "Telephonie");
+
+ left_menu($menu->liste);
+}
+
+?>
diff --git a/htdocs/telephonie/adsl/statut-1.png b/htdocs/telephonie/adsl/statut-1.png
new file mode 100644
index 00000000000..7a8fb198368
Binary files /dev/null and b/htdocs/telephonie/adsl/statut-1.png differ
diff --git a/htdocs/telephonie/adsl/statut1.png b/htdocs/telephonie/adsl/statut1.png
new file mode 100644
index 00000000000..134f1b74b30
Binary files /dev/null and b/htdocs/telephonie/adsl/statut1.png differ
diff --git a/htdocs/telephonie/adsl/statut2.png b/htdocs/telephonie/adsl/statut2.png
new file mode 100644
index 00000000000..67f0dd870d6
Binary files /dev/null and b/htdocs/telephonie/adsl/statut2.png differ
diff --git a/htdocs/telephonie/adsl/statut3.png b/htdocs/telephonie/adsl/statut3.png
new file mode 100644
index 00000000000..ae1f93d3906
Binary files /dev/null and b/htdocs/telephonie/adsl/statut3.png differ
diff --git a/htdocs/telephonie/adsl/statut4.png b/htdocs/telephonie/adsl/statut4.png
new file mode 100644
index 00000000000..15bb595ba2f
Binary files /dev/null and b/htdocs/telephonie/adsl/statut4.png differ
diff --git a/htdocs/telephonie/adsl/statut5.png b/htdocs/telephonie/adsl/statut5.png
new file mode 100644
index 00000000000..e407cae3e47
Binary files /dev/null and b/htdocs/telephonie/adsl/statut5.png differ
diff --git a/htdocs/telephonie/adsl/statut6.png b/htdocs/telephonie/adsl/statut6.png
new file mode 100644
index 00000000000..8162d27f0a3
Binary files /dev/null and b/htdocs/telephonie/adsl/statut6.png differ
diff --git a/htdocs/telephonie/adsl/statut7.png b/htdocs/telephonie/adsl/statut7.png
new file mode 100644
index 00000000000..4d8f59be1c2
Binary files /dev/null and b/htdocs/telephonie/adsl/statut7.png differ
diff --git a/htdocs/telephonie/adsl/statut8.png b/htdocs/telephonie/adsl/statut8.png
new file mode 100644
index 00000000000..41ff0d4681d
Binary files /dev/null and b/htdocs/telephonie/adsl/statut8.png differ