diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-06-29 17:05:13 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-06-29 17:05:13 -0700 |
commit | c8a0e292f27fe631ca0a17ff77172f66985cca33 (patch) | |
tree | 0b0da27f3c9ae6f0728069955b27bfb8bf74776b | |
parent | 14f73cfb3943afdadd37a5a4d5d765be55832305 (diff) |
phone_sql export, RT#29054
-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 8a49ddb2f..a2e54367e 100644 --- a/FS/MANIFEST +++ b/FS/MANIFEST @@ -123,6 +123,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 |