Help for this page

Select Code to Download


  1. or download this
    $module =~ s/\.(pm|PM)$//;
        my $mainmodule = PLUGIN_BASE . $module . ".pm";
    ...
        import $mainmodule;    
    
        return $module->new();
    
  2. or download this
    eval{
        my $obj = $facory->get_instance('thingy');
    ...
    {
        print $@;
    }