vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Will 'if_browser=ie' work in php files? (https://vborg.vbsupport.ru/showthread.php?t=136815)

Razasharp 01-18-2007 01:01 AM

Will 'if_browser=ie' work in php files?
 
Just wondering, will this work in the php files?:

PHP Code:

if ((is_browser('ie'5) OR is_browser('ie'6)) 
{
Do 
this


Cheers

akanevsky 01-18-2007 01:04 AM

No, the function is a javascript function and will work only within javascripts.

Razasharp 01-18-2007 01:11 AM

Ah right... thanks.

I guess there's no way to test what browser someone is using via PHP then?

Adrian Schneider 01-18-2007 03:38 AM

Take a look at how vB. does it (functions.php)
PHP Code:

// #############################################################################
/**
* Browser detection system - returns whether or not the visiting browser is the one specified
*
* @param    string    Browser name (opera, ie, mozilla, firebord, firefox... etc. - see $is array)
* @param    float    Minimum acceptable version for true result (optional)
*
* @return    boolean
*/
function is_browser($browser$version 0


Brad 01-18-2007 04:58 AM

Here you go, and yes these functions will work in the .php files, plug-ins, and templates. :)

https://vborg.vbsupport.ru/showthread.php?t=107538

Razasharp 01-19-2007 02:00 AM

Thanks both.

Would I need to re paste the function in the script I want to use it? Or use a different if statement?

Or can you give me some pointers in what I have to do in order to get an if statement like in Post #1 to work in the class_bbcode.php script?

Appreciate any help!
Thanks.

Brad 01-20-2007 10:13 AM

Quote:

Originally Posted by Razasharp (Post 1162618)
Thanks both.

Would I need to re paste the function in the script I want to use it? Or use a different if statement?

Or can you give me some pointers in what I have to do in order to get an if statement like in Post #1 to work in the class_bbcode.php script?

Appreciate any help!
Thanks.

As long as functions.php is loaded you'll be able to use the above function. Functions.php is loaded around line 140 of init.php, so it should always be there if you need it.

Razasharp 01-20-2007 03:13 PM

Thanks Brad.

So basically, this should work?

PHP Code:

if ((is_browser('ie'5) OR is_browser('ie'6))  

Do 
this 



Brad 02-02-2007 05:37 AM

Yes that works, however. ;)

PHP Code:

if (is_browser('ie'5) OR is_browser('ie'6))
{
    
// Do whatever here





All times are GMT. The time now is 07:04 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01012 seconds
  • Memory Usage 1,735KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete