opencart中如何获取小店的url

In opencart, how to get the url of the side store

我在opencart中创建了另一个店铺,如何在controller中获取另一个店铺的url?

谢谢,罗恩

url 将是您在创建商店时放入 Store Url 字段 查看本教程。

http://code.tutsplus.com/tutorials/create-a-multi-store-setup-using-opencart--cms-22261

获取控制器中的所有商店列表

$this->load->model('setting/store');

$results = $this->model_setting_store->getStores();

结果将包含 ID、名称、url

的商店信息