OsmAnd/config/site/GoogleAnalytics/Internals/Request/TransactionRequest.php
2012-01-14 00:17:50 +01:00

108 lines
No EOL
3.2 KiB
PHP

<?php
/**
* Generic Server-Side Google Analytics PHP Client
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License (LGPL) as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*
* Google Analytics is a registered trademark of Google Inc.
*
* @link http://code.google.com/p/php-ga
*
* @license http://www.gnu.org/licenses/lgpl.html
* @author Thomas Bachem <tb@unitedprototype.com>
* @copyright Copyright (c) 2010 United Prototype GmbH (http://unitedprototype.com)
*/
namespace UnitedPrototype\GoogleAnalytics\Internals\Request;
use UnitedPrototype\GoogleAnalytics\Transaction;
use UnitedPrototype\GoogleAnalytics\Internals\ParameterHolder;
class TransactionRequest extends Request {
/**
* @var \UnitedPrototype\GoogleAnalytics\Transaction
*/
protected $transaction;
/**
* @return string
*/
protected function getType() {
return Request::TYPE_TRANSACTION;
}
/**
* @link http://code.google.com/p/gaforflash/source/browse/trunk/src/com/google/analytics/ecommerce/Transaction.as#76
*
* @return \UnitedPrototype\GoogleAnalytics\Internals\ParameterHolder
*/
protected function buildParameters() {
$p = parent::buildParameters();
$p->utmtid = $this->transaction->getOrderId();
$p->utmtst = $this->transaction->getAffiliation();
$p->utmtto = $this->transaction->getTotal();
$p->utmttx = $this->transaction->getTax();
$p->utmtsp = $this->transaction->getShipping();
$p->utmtci = $this->transaction->getCity();
$p->utmtrg = $this->transaction->getRegion();
$p->utmtco = $this->transaction->getCountry();
return $p;
}
/**
* The GA Javascript client doesn't send any visitor information for
* e-commerce requests, so we don't either.
*
* @param \UnitedPrototype\GoogleAnalytics\Internals\ParameterHolder $p
* @return \UnitedPrototype\GoogleAnalytics\Internals\ParameterHolder
*/
protected function buildVisitorParameters(ParameterHolder $p) {
return $p;
}
/**
* The GA Javascript client doesn't send any custom variables for
* e-commerce requests, so we don't either.
*
* @param \UnitedPrototype\GoogleAnalytics\Internals\ParameterHolder $p
* @return \UnitedPrototype\GoogleAnalytics\Internals\ParameterHolder
*/
protected function buildCustomVariablesParameter(ParameterHolder $p) {
return $p;
}
/**
* @return \UnitedPrototype\GoogleAnalytics\Transaction
*/
public function getTransaction() {
return $this->transaction;
}
/**
* @param \UnitedPrototype\GoogleAnalytics\Transaction $transaction
*/
public function setTransaction(Transaction $transaction) {
$this->transaction = $transaction;
}
}
?>