ACL for hardware class config, RT#85057
[freeside.git] / FS / FS / ClientAPI.pm
index 1677fcc..4ba03f4 100644 (file)
@@ -2,14 +2,23 @@ package FS::ClientAPI;
 
 use strict;
 use base 'Exporter';
-use vars qw( @EXPORT_OK %handler $domain $DEBUG );
+use vars qw( @EXPORT_OK %handler $domain $DEBUG $me );
 
 @EXPORT_OK = qw( load_clientapi_modules );
 
 $DEBUG = 0;
+$me = '[FS::ClientAPI]';
 
 %handler = ();
 
+=head1 NAME
+
+FS::ClientAPI
+
+=item load_clientapi_modules
+
+=cut
+
 sub load_clientapi_modules {
 
   #find modules
@@ -30,10 +39,15 @@ sub load_clientapi_modules {
 
 }
 
+=item dispatch [ name ]
+
+=cut
+
 sub dispatch {
   my ( $self, $name ) = ( shift, shift );
   $name =~ s(/)(::)g;
   my $sub = "FS::ClientAPI::$name";
+  warn "$me dispatch: calling $sub with args @_\n" if $DEBUG;
   no strict 'refs';
   &{$sub}(@_);
 }