diff options
-rw-r--r-- | FS/FS/part_export/phone_sql.pm | 23 | ||||
-rw-r--r-- | FS/MANIFEST | 4 |
2 files changed, 27 insertions, 0 deletions
diff --git a/FS/FS/part_export/phone_sql.pm b/FS/FS/part_export/phone_sql.pm new file mode 100644 index 000000000..64868c797 --- /dev/null +++ b/FS/FS/part_export/phone_sql.pm @@ -0,0 +1,23 @@ +package FS::part_export::phone_sql; +use base qw( FS::part_export::sql_Common ); + +use strict; +use vars qw( %info ); +#use Tie::IxHash; + +#tie my %options, 'Tie::IxHash', +# %{__PACKAGE__->sql_options}, +# #more options... +#; + +%info = ( + 'svc' => 'svc_phone', + 'desc' => 'Real time export of phone numbers (DIDs) to SQL databases', + 'options' => __PACKAGE__->sql_options, #\%options, + 'no_machine' => 1, + 'notes' => <<END +Export phone numbers (DIDs) to SQL databases. +END +); + +1; diff --git a/FS/MANIFEST b/FS/MANIFEST index 504b9bd64..2116442d2 100644 --- a/FS/MANIFEST +++ b/FS/MANIFEST @@ -128,6 +128,10 @@ FS/part_export/http.pm FS/part_export/infostreet.pm FS/part_export/ldap.pm FS/part_export/null.pm +FS/part_export/phone_shellcommands.pm +FS/part_export/phone_sqlopensips.pm +FS/part_export/phone_sql.pm +FS/part_export/phone_sqlradius.pm FS/part_export/radiator.pm FS/part_export/router.pm FS/part_export/shellcommands.pm |