Привет всем. Прикрутил себе мегаменю с 3 уровнем вложения категорий, но осталась проблема: никак не могу добавить фото категории второго уровня. Вот что имеем:
$product_total = $this->model_catalog_product->getTotalProducts($data);
// это добавил я
$image = $this->model_catalog_category->getCategory($category_id);
$thumb = $this->model_tool_image->resize($image, 50, 50);
//
$children_data[] = array(
'name' => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $product_total . ')' : ''),
'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id']),
'level' => $level, // level-3
'thumb' => $thumb //image
);
}
// Level 1
$this->data['categories'][] = array(
'name' => $category['name'],
'children' => $children_data,
'column' => $category['column'] ? $category['column'] : 1,
'href' => $this->url->link('product/category', 'path=' . $category['category_id'])
tools/image подгружен.
Где я туплю?