Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Вывод главного фото в списке с дополнительными


Evgenka
 Share

Recommended Posts

Хочу добавить вывод главного фото товара вместе с дополнительными фото. Доп фото формируются 

			$results = $this->model_catalog_product->getProductImages($this->request->get['product_id']);
			
			foreach ($results as $result) {
				$this->data['images'][] = array(
					'popup' => $this->model_tool_image->resize($result['image'], $this->config->get('config_image_popup_width'), $this->config->get('config_image_popup_height')),
					'thumb' => $this->model_tool_image->resize($result['image'], $this->config->get('config_image_additional_width'), $this->config->get('config_image_additional_height'))
				);
			}

Так понимаю, что нужно подкорректировать функцию getProductImages в модели, которая выглядит достаточно просто и выбирает фото товаров в таблице product_image по product_id. Но как в этот запрос добавить еще, что бы выбирались фото из таблицы product?

	public function getProductImages($product_id) {
		$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "product_image WHERE product_id = '" . (int)$product_id . "' ORDER BY sort_order ASC");
		return $query->rows;
	}

Помогите пожалуйста дописать.

Спасибо

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.