summaryrefslogtreecommitdiff
path: root/FS/FS/svc_Common.pm
diff options
context:
space:
mode:
authorivan <ivan>2004-02-23 08:12:54 +0000
committerivan <ivan>2004-02-23 08:12:54 +0000
commit12ec7e574507f247ba5f83df4f7326b42f796267 (patch)
treecbf38007a90f61df73632f700fd92e446eac3ab2 /FS/FS/svc_Common.pm
parent6466f8605526ad08da3cb3238b8c6eef3d7fb3cf (diff)
implement fallback suspension code
Diffstat (limited to 'FS/FS/svc_Common.pm')
-rw-r--r--FS/FS/svc_Common.pm26
1 files changed, 25 insertions, 1 deletions
diff --git a/FS/FS/svc_Common.pm b/FS/FS/svc_Common.pm
index 2e236ee2e..a4011f049 100644
--- a/FS/FS/svc_Common.pm
+++ b/FS/FS/svc_Common.pm
@@ -376,11 +376,35 @@ methods. Called by the cancel method of FS::cust_pkg (see L<FS::cust_pkg>).
sub cancel { ''; }
+=item clone_suspended
+
+Constructor used by FS::part_export::_export_suspend fallback. Stub returning
+same object for svc_ classes which don't implement a suspension fallback
+(everything except svc_acct at the moment). Document better.
+
+=cut
+
+sub clone_suspended {
+ shift;
+}
+
+=item clone_kludge_unsuspend
+
+Constructor used by FS::part_export::_export_unsuspend fallback. Stub returning
+same object for svc_ classes which don't implement a suspension fallback
+(everything except svc_acct at the moment). Document better.
+
+=cut
+
+sub clone_kludge_unsuspend {
+ shift;
+}
+
=back
=head1 VERSION
-$Id: svc_Common.pm,v 1.12.4.4 2003-11-12 12:29:55 ivan Exp $
+$Id: svc_Common.pm,v 1.12.4.5 2004-02-23 08:12:54 ivan Exp $
=head1 BUGS