Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Что вы подразумеваете под тегами товаров, их атрибуты?Этим я так полагаю я узнаю теги только определенного товара, а как получить все теги магазина?
select * from `product_attribute`;
function getAllattributes(){
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_attribute WHERE language_id = '" . (int) $this->config->get('config_language_id') . "'");
return $query->rows;
}
$this->load->model('module/модель');
$attribute_info = $this->model_module_модель->getAllattributes();
print_r($attribute_info);