Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
php if statement
#24
Give this a shot. I can't test as I don't have an iPhone.
This should make the $TEMPLATE var equal to "iPhone" when the user is using an iPhone.

Code:
add_hook('index-pretemplate','sic_change_theme');

function sic_change_theme() {
    global $TEMPLATE;
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPhone') == true) {
        $TEMPLATE = 'iPhone';
    }
}

So when the below is called...
Code:
include("theme/".$TEMPLATE."/".$template_file);
It should output like this...
Code:
include("theme/iPhone/".$template_file);

Try and keep it simple. You were trying to make sure the iPhone folder exists... well, I wouldn't have this plugin if it didn't exist Wink If you want to check for that, show it off in the admin panel.
Clients always want to be able to change the content of their pages, but they are unwilling to do so.

Have you ever coded in your underwear before?
Reply


Messages In This Thread
php if statement - by JWH_Matthew - 2010-03-16, 08:20:43
php if statement - by internet54 - 2010-03-16, 08:30:27
php if statement - by JWH_Matthew - 2010-03-16, 10:07:11
php if statement - by internet54 - 2010-03-16, 11:33:59
php if statement - by JWH_Matthew - 2010-03-16, 11:36:51
php if statement - by JWH_Matthew - 2010-03-16, 11:41:19
php if statement - by baris - 2010-03-16, 12:47:39
php if statement - by JWH_Matthew - 2010-03-16, 12:57:00
php if statement - by baris - 2010-03-16, 13:41:06
php if statement - by JWH_Matthew - 2010-03-16, 13:49:48
php if statement - by baris - 2010-03-16, 13:54:07
php if statement - by JWH_Matthew - 2010-03-16, 13:55:46
php if statement - by baris - 2010-03-16, 14:07:58
php if statement - by JWH_Matthew - 2010-03-16, 14:16:23
php if statement - by baris - 2010-03-16, 14:22:28
php if statement - by JWH_Matthew - 2010-03-16, 14:28:02
php if statement - by baris - 2010-03-16, 14:33:56
php if statement - by JWH_Matthew - 2010-03-16, 14:36:54
php if statement - by baris - 2010-03-16, 14:40:45
php if statement - by JWH_Matthew - 2010-03-16, 14:48:33
php if statement - by baris - 2010-03-16, 14:53:53
php if statement - by JWH_Matthew - 2010-03-16, 14:57:58
php if statement - by baris - 2010-03-16, 15:20:10
php if statement - by internet54 - 2010-03-16, 15:24:32
php if statement - by JWH_Matthew - 2010-03-16, 15:38:19
php if statement - by internet54 - 2010-03-16, 15:39:21
php if statement - by JWH_Matthew - 2010-03-16, 15:44:25
php if statement - by Zegnåt - 2010-03-16, 16:45:55
php if statement - by sal - 2010-03-16, 18:59:10
php if statement - by Zegnåt - 2010-03-16, 19:34:52
php if statement - by baris - 2010-03-16, 22:01:18
php if statement - by JWH_Matthew - 2010-03-17, 00:55:03
php if statement - by baris - 2010-03-17, 01:36:18
php if statement - by JWH_Matthew - 2010-03-17, 14:44:58



Users browsing this thread: 2 Guest(s)