kivitendo/SL/DB/Helper/ALLAuth.pm @ 912e5eff
0bb70855 | Moritz Bunkus | package SL::DB::Helper::ALLAuth;
|
||
a5ba22d2 | Moritz Bunkus | |||
use strict;
|
||||
2eb8af0d | Bernd Bleßmann | use SL::DB::AuthClient;
|
||
use SL::DB::AuthClientGroup;
|
||||
use SL::DB::AuthClientUser;
|
||||
a5ba22d2 | Moritz Bunkus | use SL::DB::AuthGroup;
|
||
use SL::DB::AuthGroupRight;
|
||||
2eb8af0d | Bernd Bleßmann | use SL::DB::AuthMasterRight;
|
||
use SL::DB::AuthSchemaInfo;
|
||||
use SL::DB::AuthSession;
|
||||
use SL::DB::AuthSessionContent;
|
||||
a5ba22d2 | Moritz Bunkus | use SL::DB::AuthUser;
|
||
2eb8af0d | Bernd Bleßmann | use SL::DB::AuthUserConfig;
|
||
use SL::DB::AuthUserGroup;
|
||||
a5ba22d2 | Moritz Bunkus | |||
1;
|
||||
__END__
|
||||
=pod
|
||||
=head1 NAME
|
||||
0bb70855 | Moritz Bunkus | SL::DB::Helper::ALLAuth: Dependency-only package for all SL::DB::Auth* modules
|
||
a5ba22d2 | Moritz Bunkus | |||
=head1 SYNOPSIS
|
||||
0bb70855 | Moritz Bunkus | use SL::DB::Helper::ALLAuth;
|
||
a5ba22d2 | Moritz Bunkus | |||
=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
|
||||
0bb70855 | Moritz Bunkus | SL::DB::Helper::ALLAuth> and having everything loaded. This is
|
||
008c2e15 | Moritz Bunkus | supposed to be used only in the kivitendo console. Normal modules
|
||
a5ba22d2 | Moritz Bunkus | should C<use> only the modules they actually need.
|
||
=head1 AUTHOR
|
||||
Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
|
||||
=cut
|