OpenCart 🇺🇦

Метод Openbay::productUpdateListen(...)

Схема

public mixed productUpdateListen ( $productId, $data )

Аргументы

Аргумент Возможный тип Описание
$productId
$data

Описание

Метод пока еще не документирован.

Исходный код

/**
 * This call is performed after the product has been updated.
 * The $data variable holds all of the information that has
 * been sent through the $_POST.
 */

// eBay Module
if ($this->config->get('openbay_status') == 1) {
	$this->ebay->productUpdateListen($productId, $data);
}

// Amazon Module
if ($this->config->get('amazon_status') == 1) {
	$this->amazon->productUpdateListen($productId, $data);
}

// Amazon US Module
if ($this->config->get('amazonus_status') == 1) {
	$this->amazonus->productUpdateListen($productId, $data);
}