You appear to be a bot. Output may be restricted
Description
Usage
Client::constructUserAgentHeader();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/gateways/libs/amazon/Client.php
Lines:
1 to 11 of 11
private function constructUserAgentHeader() { $this->userAgent = $this->quoteApplicationName($this->config['application_name']) . '/' . $this->quoteApplicationVersion($this->config['application_version']); $this->userAgent .= ' ('; $this->userAgent .= 'Language=PHP/' . phpversion(); $this->userAgent .= '; '; $this->userAgent .= 'Platform=' . php_uname('s') . '/' . php_uname('m') . '/' . php_uname('r'); $this->userAgent .= '; '; $this->userAgent .= 'MWSClientVersion=' . self::MWS_CLIENT_VERSION; $this->userAgent .= ')'; }