Browser::checkBrowseriPod PHP Method

checkBrowseriPod() protected method

Determine if the browser is iPod or not (last updated 1.7)
protected checkBrowseriPod ( ) : boolean
return boolean True if the browser is iPod otherwise false
    protected function checkBrowseriPod()
    {
        if (stripos($this->_agent, 'iPod') !== false) {
            $this->setVersion(self::VERSION_UNKNOWN);
            $this->setBrowser(self::BROWSER_IPOD);
            $this->getSafariVersionOnIos();
            $this->getChromeVersionOnIos();
            $this->checkForFacebookIos();
            $this->setMobile(true);
            return true;
        }
        return false;
    }