X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export.pm;h=16aad6dcd655dfb5e5c4e57e75bfcf20cd4e6365;hb=083d1fef19686b9b72f1b92e72a4fa56a3f392a9;hp=dce2d2a44411bfb143939413ca3467100965c192;hpb=feef0e4c2b4bd6b776b25f5a1bd6fdbf63fd08b2;p=freeside.git diff --git a/FS/FS/part_export.pm b/FS/FS/part_export.pm index dce2d2a44..16aad6dcd 100644 --- a/FS/FS/part_export.pm +++ b/FS/FS/part_export.pm @@ -10,6 +10,9 @@ use FS::part_svc; use FS::part_export_option; use FS::export_svc; +#for export modules, though they should probably just use it themselves +use FS::queue; + @ISA = qw( FS::option_Common ); @EXPORT_OK = qw(export_info); @@ -356,6 +359,14 @@ sub _export_unsuspend { $self->_export_replace( $svc_x, $old ); } +=item export_links SVC_OBJECT ARRAYREF + +Adds a list of web elements to ARRAYREF specific to this export and SVC_OBJECT. +The elements are displayed in the UI to lead the the operator to external +configuration, monitoring, and similar tools. + +=cut + =back =head1 SUBROUTINES @@ -400,6 +411,7 @@ sub export_info { # ''; #} +#false laziness w/part_pkg & cdr foreach my $INC ( @INC ) { foreach my $file ( glob("$INC/FS/part_export/*.pm") ) { warn "attempting to load export info from $file\n" if $DEBUG;