summaryrefslogtreecommitdiff
path: root/FS/FS/part_export
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-06-29 17:05:11 -0700
committerIvan Kohler <ivan@freeside.biz>2014-06-29 17:05:11 -0700
commitec583ed0ce9b246b71d68ebbbc7ab3f0036fce22 (patch)
tree37eeddafc6858d7536d132828f9eb6e5c8ff2944 /FS/FS/part_export
parent5dd12ebde3e35336ece3ddf9d8460fa60520cf12 (diff)
phone_sql export, RT#29054
Diffstat (limited to 'FS/FS/part_export')
-rw-r--r--FS/FS/part_export/phone_sql.pm23
1 files changed, 23 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;