App::Framework::Settings - Application framework configuration


NAME

App::Framework::Settings - Application framework configuration


DESCRIPTION

Contains various configuration settings for the application framework objects.

MODULES

An array of the modules that will be imported into the application automatically:

        Cwd 
        File::Basename
        File::Path
        File::Temp
        File::Spec
        File::Find
        File::Copy
        Pod::Usage
        File::DosGlob qw(glob)
        Date::Manip
        Getopt::Long qw(:config no_ignore_case)
        
=cut

our @MODULES = (
'Cwd',
'File::Basename',
'File::Path',
'File::Temp',
'File::Spec',
'File::Find',
'File::Copy',
"File::DosGlob 'glob'",


        'Pod::Usage',
        'Date::Manip',
        'Getopt::Long qw(:config no_ignore_case)',

) ;

DATE_TZ

If Date::Manip is automatically imported, then this variable should be set to the local timezone setting.

DATE_FORMAT

If Date::Manip is automatically imported, then this variable should be set to the local date format setting.


AUTHOR

Steve Price, <sdprice at cpan.org>

 App::Framework::Settings - Application framework configuration