在我的模块的控制器中catalog/controller/module/my_module.php
,我想读取存储在setting
表中的另一个模块(例如附属或幻灯片模块)的数据。
在控制器中,我有这样的东西:
class ControllerModuleMyModule extends Controller {
protected function index($setting) {
....
....
}
}
where$setting
让我可以从设置表中访问我当前模块的数据。Opencart 中是否有更简单的方法(可能是内置函数)来访问另一个模块的数据?