Rückstände aus Umbenennung von SL/DB/Helpers nach SL/DB/Helper gefixt Teil 2
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 3 May 2011 16:01:04 +0000 (18:01 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 5 May 2011 09:24:34 +0000 (11:24 +0200)
SL/DB/Helper/ALLAuth.pm [new file with mode: 0644]
SL/DB/Helper/Mappings.pm
SL/DB/Helpers/ALLAuth.pm [deleted file]

diff --git a/SL/DB/Helper/ALLAuth.pm b/SL/DB/Helper/ALLAuth.pm
new file mode 100644 (file)
index 0000000..4957205
--- /dev/null
@@ -0,0 +1,36 @@
+package SL::DB::Helper::ALLAuth;
+
+use strict;
+
+use SL::DB::AuthGroup;
+use SL::DB::AuthGroupRight;
+use SL::DB::AuthUserConfig;
+use SL::DB::AuthUser;
+
+1;
+
+__END__
+
+=pod
+
+=head1 NAME
+
+SL::DB::Helper::ALLAuth: Dependency-only package for all SL::DB::Auth* modules
+
+=head1 SYNOPSIS
+
+  use SL::DB::Helper::ALLAuth;
+
+=head1 DESCRIPTION
+
+This module depends on all modules in SL/DB/Auth*.pm for the
+convenience of being able to write a simple \C<use
+SL::DB::Helper::ALLAuth> and having everything loaded. This is
+supposed to be used only in the Lx-Office console. Normal modules
+should C<use> only the modules they actually need.
+
+=head1 AUTHOR
+
+Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
+
+=cut
index 7f7c475..4fe4ac9 100644 (file)
@@ -220,23 +220,23 @@ will die with an error.
 
 Returns the package name for a table name:
 
-  SL::DB::Helpers::Mappings::get_package_for_table('oe')
+  SL::DB::Helper::Mappings::get_package_for_table('oe')
   # SL::DB::Order
 
 =item C<get_manager_package_for_table $table_name>
 
 Returns the manager package name for a table name:
 
-  SL::DB::Helpers::Mappings::get_manager_package_for_table('oe')
+  SL::DB::Helper::Mappings::get_manager_package_for_table('oe')
   # SL::DB::Manager::Order
 
 =item C<get_table_for_package $package_name>
 
 Returns the table name for a package name:
 
-  SL::DB::Helpers::Mappings::get_table_for_package('SL::DB::Order')
+  SL::DB::Helper::Mappings::get_table_for_package('SL::DB::Order')
   # oe
-  SL::DB::Helpers::Mappings::get_table_for_package('Order')
+  SL::DB::Helper::Mappings::get_table_for_package('Order')
   # oe
 
 =back
diff --git a/SL/DB/Helpers/ALLAuth.pm b/SL/DB/Helpers/ALLAuth.pm
deleted file mode 100644 (file)
index b74952e..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package SL::DB::Helpers::ALLAuth;
-
-use strict;
-
-use SL::DB::AuthGroup;
-use SL::DB::AuthGroupRight;
-use SL::DB::AuthUserConfig;
-use SL::DB::AuthUser;
-
-1;
-
-__END__
-
-=pod
-
-=head1 NAME
-
-SL::DB::Helpers::ALLAuth: Dependency-only package for all SL::DB::Auth* modules
-
-=head1 SYNOPSIS
-
-  use SL::DB::Helpers::ALLAuth;
-
-=head1 DESCRIPTION
-
-This module depends on all modules in SL/DB/Auth*.pm for the
-convenience of being able to write a simple \C<use
-SL::DB::Helpers::ALLAuth> and having everything loaded. This is
-supposed to be used only in the Lx-Office console. Normal modules
-should C<use> only the modules they actually need.
-
-=head1 AUTHOR
-
-Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
-
-=cut