]> wagnertech.de Git - mfinanz.git/blob - SL/DB/Helper/ALLAuth.pm
Merge branch 'master' of http://wagnertech.de/git/mfinanz
[mfinanz.git] / SL / DB / Helper / ALLAuth.pm
1 package SL::DB::Helper::ALLAuth;
2
3 use strict;
4
5 use SL::DB::AuthClient;
6 use SL::DB::AuthClientGroup;
7 use SL::DB::AuthClientUser;
8 use SL::DB::AuthGroup;
9 use SL::DB::AuthGroupRight;
10 use SL::DB::AuthMasterRight;
11 use SL::DB::AuthSchemaInfo;
12 use SL::DB::AuthSession;
13 use SL::DB::AuthSessionContent;
14 use SL::DB::AuthUser;
15 use SL::DB::AuthUserConfig;
16 use SL::DB::AuthUserGroup;
17
18 1;
19
20 __END__
21
22 =pod
23
24 =head1 NAME
25
26 SL::DB::Helper::ALLAuth: Dependency-only package for all SL::DB::Auth* modules
27
28 =head1 SYNOPSIS
29
30   use SL::DB::Helper::ALLAuth;
31
32 =head1 DESCRIPTION
33
34 This module depends on all modules in SL/DB/Auth*.pm for the
35 convenience of being able to write a simple \C<use
36 SL::DB::Helper::ALLAuth> and having everything loaded. This is
37 supposed to be used only in the kivitendo console. Normal modules
38 should C<use> only the modules they actually need.
39
40 =head1 AUTHOR
41
42 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
43
44 =cut