You appear to be a bot. Output may be restricted
Description
Determine if the user is using a BlackBerry (last updated 1.7)
Usage
$boolean = Browser::checkBrowserBlackBerry();
Parameters
Returns
boolean True if the browser is the BlackBerry browser otherwise false
Source
File name: easy-digital-downloads/includes/libraries/browser.php
Lines:
1 to 12 of 12
function checkBrowserBlackBerry() { if ( stripos( $this->_agent, 'blackberry' ) !== false ) { $aresult = explode( "/", stristr( $this->_agent, "BlackBerry" ) ); $aversion = explode( ' ', $aresult[1] ); $this->setVersion( $aversion[0] ); $this->_browser_name = $this->BROWSER_BLACKBERRY; $this->setMobile( true ); return true; } return false; }