in reply to Re: Perl Framework Help
in thread Perl Framework Help

It's Really difficult to understand Module::Pluggable Do you have a small snippet of code that can help. I just want to import all modules from one folder in my main program.

Replies are listed 'Best First'.
Re^3: Perl Framework Help
by Corion (Patriarch) on Apr 30, 2012 at 07:02 UTC

    Have you looked at the SYNOPSIS section of Module::Pluggable?

    use MyClass; my $mc = MyClass->new(); # returns the names of all plugins installed under MyClass::Plugin +::* my @plugins = $mc->plugins();

    If you blindly want to import all modules from a folder, take a look at glob and require. This is basically what Module::Pluggable does as well, but maybe you feel more confident in implementing it yourself.