B
bob
Is it possible to dynamically change the location of a module
i.e.
require Plugins::Wetherbys::Generate::GenerateXML;
Plugins::Wetherbys::Generate::GenerateXML->import('help');
works fine
but ideally
i would like
require Plugins::$VAR::Generate::GenerateXML;
Plugins::Wetherbys::$VAR::GenerateXML->import('help');
I have looked through the FAQs and couldn't find anything.
I know you can do require $VAR;
Cheers
i.e.
require Plugins::Wetherbys::Generate::GenerateXML;
Plugins::Wetherbys::Generate::GenerateXML->import('help');
works fine
but ideally
i would like
require Plugins::$VAR::Generate::GenerateXML;
Plugins::Wetherbys::$VAR::GenerateXML->import('help');
I have looked through the FAQs and couldn't find anything.
I know you can do require $VAR;
Cheers