-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.example.php
40 lines (38 loc) · 1.28 KB
/
config.example.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
$config = [
'fritzbox' => [
'url' => 'fritz.box', // your Fritz!Box IP
'user' => 'youruser', // your Fritz!Box user
'password' => 'xxxxxxxxxx', // your Fritz!Box user password
'phonebook' => 0, // phonebooks to convert (first tab = 0!)
],
'ipPhonebooks' => [ // uncomment your desired export(s)
/*
'jfritz' => [ // name is just for informational purposes
'xsl' => 'jfritz.xsl', // XSL transformation file in .\lib\
'path' => '', // the converted phone book is saved there
'file' => 'jfritz.phonebook.xml',
],
'Yealink' => [
'xsl' => 'Yealink.xsl',
'path' => '',
'file' => 'LocalPhonebook.xml',
],
'snom' => [
'xsl' => 'snom.xsl',
'path' => '',
'file' => 'phonebook.xml',
],
'Grandstream' => [
'xsl' => 'grandstream.xsl',
'path' => '',
'file' => 'gs_phonebook.xml',
],
'Cisco' => [
'xsl' => 'Cisco.xsl',
'path' => '',
'file' => 'Phonebook.xml',
],
*/
],
];