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