protected function MobileDeviceDetectionObject::setUserAgentHeaders in Mobile Device Detection 8
1 call to MobileDeviceDetectionObject::setUserAgentHeaders()
File
- src/
Object/ MobileDeviceDetectionObject.php, line 148
Class
Namespace
Drupal\mobile_device_detection\ObjectCode
protected function setUserAgentHeaders($headers) {
$this->user_agent_headers = join(' ', array_intersect_key($this
->getMobileHeaders(), array_flip($headers)));
if (!$this->user_agent_headers && !empty($this
->getCloudHeaders())) {
$this->user_agent_headers = 'Amazon CloudFront';
}
}