Skip to main content

Anonymisierung Telefonbuch

Beschreibung

Dargestellte Rufnummern im Telefonbuch "Extern" lassen sich anonymisieren. Ein Teil der Ziffern wird durch ’X’ ersetzt. 


LocaPhone Versionen

RELEASE 5 RELEASE 4 RELEASE 3 RELEASE 2


Vorgehensweise

Die letzten drei Stellen von Einträgen im Telefonbuch "Extern" werden durch ’X’ ersetzt.

/opt/locaphone/htdocs/gui/mod/pb_imported.php

BASH
@@ -344,8 +344,13 @@ if (@$rs) {
                        if ($r['fn'] != '') echo ', ', htmlEnt($r['fn']);
                        echo '</td>', "\n";

-                       echo '<td>', htmlEnt($r['ext']), '</td>', "\n";
-
+
+                       if(substr($r['ext'],0,-3)){
+                               echo '<td>', htmlEnt(substr($r['ext'],0,-3) . '***'), '</td>', "\n";
+                       } else {
+                               echo '<td>', htmlEnt($r['ext']), '</td>', "\n";
+                       }
+
                        echo '<td>', htmlEnt($r['user']), '</td>', "\n";

                        if ($is_admin == true) {


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.