> Oh yeah and I meant to say - standard hooks should go first. That way > you can have:
Hrm.
Because we need @ISA modified first, and currently that's happening in
register(), I'm adding an init() routine.
The process will be:
init()
_register_standard_plugins()
register()
Should init() be begin() ? I could probably make:
BEGIN { push @ISA, isa_plugin('some/plugin') }
work, but I'm not sure that's better than:
sub init {
my ($self,$qp) = @_;
$self->isa_plugin('some/plugin');
}
Thoughts?
-R
