X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole%2FApplication.pm;h=4f61f42742810235743822e7b795d8293393764e;hb=3a9e643a6a5fa96ca69b56ced03db9569fd96e2e;hp=01dd6148f49806baee4cb5929c327f669b8bdf31;hpb=3f3f95d5fdfacddf4d89137f62cde7858dc23d08;p=maypole.git diff --git a/lib/Maypole/Application.pm b/lib/Maypole/Application.pm index 01dd614..4f61f42 100644 --- a/lib/Maypole/Application.pm +++ b/lib/Maypole/Application.pm @@ -7,32 +7,38 @@ use Maypole; use Maypole::Config; our @ISA; -our $VERSION = '2.06'; +our $VERSION = '2.09'; sub import { - my ( $self, @plugins ) = @_; + my ( $class, @plugins ) = @_; my $caller = caller(0); - no strict 'refs'; - push @{"${caller}::ISA"}, $self; + my $autosetup=0; - foreach (sort @plugins) { - if (/^\-Setup$/) { $autosetup++; } - elsif (/^\-Debug$/) { - *{"$caller\::debug"} = sub { 1 }; - warn "Debugging enabled"; - } - elsif (/^-.*$/) { warn "Unknown flag: $_" } - else { - # The plugin caller should be our application class - eval "package $caller; require Maypole::Plugin::$_"; - if ($@) { warn qq(Loading plugin "Maypole::Plugin::$_" failed: $@) } + my @plugin_modules; + { + foreach (@plugins) { + if (/^\-Setup$/) { $autosetup++; } + elsif (/^\-Debug$/) { + no strict 'refs'; + *{"$caller\::debug"} = sub { 1 }; + warn "Debugging enabled"; + } + elsif (/^-.*$/) { warn "Unknown flag: $_" } else { - warn "Loaded plugin: Maypole::Plugin::$_" if $caller->debug; - unshift @ISA, "Maypole::Plugin::$_"; + my $plugin = "Maypole::Plugin::$_"; + if ($plugin->require) { + push @plugin_modules, "Maypole::Plugin::$_"; + warn "Loaded plugin: $plugin" + if $caller->can('debug') && $caller->debug; + } else { + warn qq(Loading plugin "$plugin" failed: ) + . $UNIVERSAL::require::ERROR; + } } } } - + no strict 'refs'; + push @{"${caller}::ISA"}, @plugin_modules, $class; $caller->config(Maypole::Config->new); $caller->setup() if $autosetup; }