Lines Matching refs:binfo

25 	var $binfo = array();

34 $this->binfo= [];
36 $this->binfo= $this->get_browser_local($_SERVER['HTTP_USER_AGENT']);
37 $this->binfo['browscap']= false;
43 $this->binfo= get_browser(null, true);
44 $this->binfo['browscap']= true;
46 $this->binfo['_UA']= $_SERVER['HTTP_USER_AGENT'];
47 //msg(print_r($this->binfo, true), 1); // FOR DEBUG
100 if (preg_match('/\bIE/', $this->binfo['browser']) && intval($this->binfo['version'])< 10 ) {
103 'reason' => $this->binfo['browser'] . " " . $this->binfo['version'] ,
109 if (preg_match('/^Microsoft.*/', $this->binfo['browser_maker'])) {
111 'reason' => $this->binfo['browser_maker'] ,
118 if (preg_match('/^Opera/', $this->binfo['browser']) && intval($this->binfo['version'])>12 ) {
120 'reason' => $this->binfo['browser'] . " " . $this->binfo['version'],
127 if (preg_match('/\bChrome/', $this->binfo['browser'])) {
129 'reason' => $this->binfo['browser'] ,
136 if (preg_match('/^Google.*/', $this->binfo['browser_maker'])) {
138 'reason' => $this->binfo['browser_maker'] ,
145 if (preg_match('/\bChrome/', $this->binfo['parent']) ) {
147 'reason' => $this->binfo['parent'] ,
154 if (preg_match('/.*Google Inc.*/', $this->binfo['renderingengine_maker']) ) {
163 if (preg_match('/^Safari/', $this->binfo['browser'])
164 || preg_match('/^Apple/', $this->binfo['browser_maker']) ) {
166 'reason' => $this->binfo['browser_maker'] ,
173 if (preg_match('/^Facebook/', $this->binfo['browser_maker']) ) {
175 'reason' => $this->binfo['browser_maker'] ,
182 if (preg_match('/^Amazon/', $this->binfo['browser_maker']) ) {
184 'reason' => $this->binfo['browser_maker'] ,
296 'browser' => $this->binfo['browser'] ,
297 'browser_maker' => $this->binfo['browser_maker'] ,
299 $x = print_r($this->binfo, true);