| App::Framework::Settings - Application framework configuration |
App::Framework::Settings - Application framework configuration
Contains various configuration settings for the application framework objects.
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)',
) ;
If Date::Manip is automatically imported, then this variable should be set to the local timezone setting.
If Date::Manip is automatically imported, then this variable should be set to the local date format setting.
Steve Price, <sdprice at cpan.org>
| App::Framework::Settings - Application framework configuration |