You appear to be a bot. Output may be restricted
Description
Determine if the browser is iPod or not (last updated 1.7)
Usage
$boolean = Browser::checkBrowseriPod();
Parameters
Returns
boolean True if the browser is iPod otherwise false
Source
File name: easy-digital-downloads/includes/libraries/browser.php
Lines:
1 to 16 of 16
function checkBrowseriPod() { if ( stripos( $this->_agent, 'iPod' ) !== false ) { $aresult = explode( '/', stristr( $this->_agent, 'Version' ) ); if ( isset( $aresult[1] ) ) { $aversion = explode( ' ', $aresult[1] ); $this->setVersion( $aversion[0] ); } else { $this->setVersion( $this->VERSION_UNKNOWN ); } $this->setMobile( true ); $this->setBrowser( $this->BROWSER_IPOD ); return true; } return false; }