13 lines
296 B
PHP
13 lines
296 B
PHP
<?php
|
|
|
|
namespace KupShop\GTMBundle\Ecommerce;
|
|
|
|
class PhotoInteract extends AbstractEcommerce
|
|
{
|
|
public function getData(&$dataContainer)
|
|
{
|
|
$dataContainer->event = 'photoInteract';
|
|
$dataContainer->product = $this->productLoader->getData($this->pageData['product']);
|
|
}
|
|
}
|