theiconic / php-ga-measurement-protocol

Send data to Google Analytics from the server using PHP. Implements GA measurement protocol.
MIT License
655 stars 136 forks source link

Need new param on product currency #96

Closed ednimg2 closed 3 years ago

ednimg2 commented 3 years ago

I miss one of GA parameters on Product.

protected $parameterNameMapper = [ '/^sku$/' => 'id', '/^name$/' => 'nm', '/^brand$/' => 'br', '/^category$/' => 'ca', '/^variant$/' => 'va', '/^price$/' => 'pr', '/^coupon_code$/' => 'cc', '/^position$/' => 'ps', '/^quantity$/' => 'qt', '/^custom_dimension_(\d{1,3})$/' => 'cd', '/^custom_metric_(\d{1,3})$/' => 'cm', ];

'/^currency$/' => 'cu', //EUR, USD and etc.

ednimg2 commented 3 years ago

Sorry my mistake