答案 0 :(得分:2)
$module = Module::getInstanceByName('bienvenue');
$version = $module->version;
答案 1 :(得分:1)
版本是在模块文件中这样设置的:
public function __construct()
{
$this->name = 'bienvenue';
$this->version = '5.0.1';
parent::__construct();
/* Else code... */
}