Lines Matching refs:browser
23 // detected browser info
89 You seem to be using a bad browser. \\\\
121 if (preg_match('/\bIE/', $this->binfo['browser']) && intval($this->binfo['version'])< 10 ) {
124 'reason' => $this->binfo['browser'] . " " . $this->binfo['version'] ,
139 if (preg_match('/^Opera/', $this->binfo['browser']) && intval($this->binfo['version'])>12 ) {
141 'reason' => $this->binfo['browser'] . " " . $this->binfo['version'],
148 if (preg_match('/\bChrome/', $this->binfo['browser'])) {
150 'reason' => $this->binfo['browser'] ,
184 if (preg_match('/^Safari/', $this->binfo['browser'])
216 * It does some parsing of the user agent string to provide acceptable, not necessarily accurate results, focused on returning five primary keys about the browser which are to concern for nobadbrowser :
217 * * browser
230 $ret= [ 'browser' => 'generic', 'browser_maker' => 'generic', 'parent' => '', 'version' => '0' ];
233 $ret['browser']= 'IE';
239 $ret['parent']= $ret['browser']. ' ' . $ret['majorver'];
251 $ret['browser']= 'Chrome';
273 $ret['browser']= $variantname;
286 $ret['browser']= 'Safari';
297 $ret['browser']= 'Facebook';
308 $ret['browser']= 'Firefox';