Codebase list uniscan / c468e8ad-8e0b-461e-ada3-27064b9b6b03/main Uniscan / Factory.pm
c468e8ad-8e0b-461e-ada3-27064b9b6b03/main

Tree @c468e8ad-8e0b-461e-ada3-27064b9b6b03/main (Download .tar.gz)

Factory.pm @c468e8ad-8e0b-461e-ada3-27064b9b6b03/mainraw · history · blame

    package Uniscan::Factory;
    
    sub create {
	my $class          = shift;
	my $requested_type = shift;
	    my $plugin_type	   = shift;
	    my $class          = "Plugins::". $plugin_type."::".$requested_type;
	    $plugin_type =~ s/::/\//g if($plugin_type =~/::/);
	my $location       = "Plugins/$plugin_type/$requested_type.pm";
	
	require $location;
    
	return $class->new(@_);
    }
    
    1;