Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 03-04-2006, 06:26 PM
Daniel's Avatar
Daniel Daniel is offline
 
Join Date: Jul 2005
Location: USA
Posts: 707
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default My PHP code into vB...

Hi Everyone,
I have a php code that is used for just a regular php file. I want to make it show up vB's forum home.

Here's the original code...
Code:
<?PHP
$p = parse_ini_file_quotes_safe("http://jabba.dynelabs.com/client/status.php");

function parse_ini_file_quotes_safe($f)
{
 $f=@file($f);
 for ($i=0;$i<@count($f);$i++)
 {
  $newsec=0;
  $w=@trim($f[$i]);
  if ($w)
  {
   if ((!$r) or ($sec))
   {
   if ((@substr($w,0,1)=="[") and (@substr($w,-1,1))=="]") {$sec=@substr($w,1,@strlen($w)-2);$newsec=1;}
   }
   if (!$newsec)
   {
   $w=@explode("=",$w);$k=@trim($w[0]);unset($w[0]); $v=@trim(@implode("=",$w));
   if ((@substr($v,0,1)=="\"") and (@substr($v,-1,1)=="\"")) {$v=@substr($v,1,@strlen($v)-2);}
   if ($sec) {$r[$sec][$k]=$v;} else {$r[$k]=$v;}
   }
  }
 }
 return $r;
}
?>
<CENTER>
Server Status<BR>
<?PHP
	if($p["maintenance-mode"]=="true"){
		echo "<B><FONT color=\"#FF8000\">Maintenance</FONT></B><BR>";
	}elseif($p["server-status"]=="online"){
		echo "<B><FONT color=\"#00FF00\">Online</FONT></B><BR>";
	}else{
		echo "<B><FONT color=\"#FF0000\">Offline</FONT></B><BR>";
	};
	
	echo "Jabbas in Town<BR>";

	echo "<B><FONT color=\"". ($p["users-online"] ? "#00FF00" : "#FF0000"). "\">".
		$p["users-online"]."</FONT></B><BR>";
?>
</CENTER>
So here's what I did so far, I took this part of the code and made it into a plugin using forumhome_complete
Code:
$p = parse_ini_file_quotes_safe("http://jabba.dynelabs.com/client/status.php");

function parse_ini_file_quotes_safe($f)
{
 $f=@file($f);
 for ($i=0;$i<@count($f);$i++)
 {
  $newsec=0;
  $w=@trim($f[$i]);
  if ($w)
  {
   if ((!$r) or ($sec))
   {
   if ((@substr($w,0,1)=="[") and (@substr($w,-1,1))=="]") {$sec=@substr($w,1,@strlen($w)-2);$newsec=1;}
   }
   if (!$newsec)
   {
   $w=@explode("=",$w);$k=@trim($w[0]);unset($w[0]); $v=@trim(@implode("=",$w));
   if ((@substr($v,0,1)=="\"") and (@substr($v,-1,1)=="\"")) {$v=@substr($v,1,@strlen($v)-2);}
   if ($sec) {$r[$sec][$k]=$v;} else {$r[$k]=$v;}
   }
  }
 }
 return $r;
}
But when it comes time to put the second part of it into a template, I have no idea on how to do it.
Code:
if($p["maintenance-mode"]=="true"){
		echo "<B><FONT color=\"#FF8000\">Maintenance</FONT></B><BR>";
	}elseif($p["server-status"]=="online"){
		echo "<B><FONT color=\"#00FF00\">Online</FONT></B><BR>";
	}else{
		echo "<B><FONT color=\"#FF0000\">Offline</FONT></B><BR>";
	};
	
	echo "Jabbas in Town<BR>";

	echo "<B><FONT color=\"". ($p["users-online"] ? "#00FF00" : "#FF0000"). "\">".
		$p["users-online"]."</FONT></B><BR>";
Any help is extremely appreciated.
Reply With Quote
  #2  
Old 03-05-2006, 03:12 AM
merk merk is offline
 
Join Date: Nov 2001
Location: Canberra, Australia
Posts: 601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Use forumhome_start.

HTML Code:
<if condition="$p['maintenance-mode']">
<FONT color=\"#FF8000\">Maintenance</FONT></B><BR>
<else /><if condition="$p['server-status']=='online'">
<B><FONT color=\"#00FF00\">Online</FONT></B><BR>
<else />
<B><FONT color=\"#FF0000\">Offline</FONT></B><BR>
</if>
</if>
 
 
Jabbas in Town<BR>
 
<B><FONT color="<if condition="$p['users-online']">#00FF00<else />#FF0000</if>">
	$p[users-online]</FONT></B><BR>
Comments on your coding style: you should not use double quotes (") for strings that do not need evaluating. If it contains no variables that you want to be expended, use a single quote (').

To access arrays in templates, you cannot use " (and afaik, ' wont work either) around the array key, it needs to be blank like $array[key].
Reply With Quote
  #3  
Old 03-05-2006, 04:07 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by merk
Use forumhome_start.

HTML Code:
<if condition="$p['maintenance-mode']">
<FONT color=\"#FF8000\">Maintenance</FONT></B><BR>
<else /><if condition="$p['server-status']=='online'">
<B><FONT color=\"#00FF00\">Online</FONT></B><BR>
<else />
<B><FONT color=\"#FF0000\">Offline</FONT></B><BR>
</if>
</if>
 
 
Jabbas in Town<BR>
 
<B><FONT color="<if condition="$p['users-online']">#00FF00<else />#FF0000</if>">
	$p[users-online]</FONT></B><BR>
Comments on your coding style: you should not use double quotes (") for strings that do not need evaluating. If it contains no variables that you want to be expended, use a single quote (').

To access arrays in templates, you cannot use " (and afaik, ' wont work either) around the array key, it needs to be blank like $array[key].
About that last part, that is correct.

The whole string is eval()d in double quotes, so "blah blah $var['key']" will generate a parse error, but "blah blah $var[key]" won't. This doesn't apply to conditions!

Alternatively, you could use "blah blah {$var['key']}"
Reply With Quote
  #4  
Old 03-05-2006, 04:26 AM
Daniel's Avatar
Daniel Daniel is offline
 
Join Date: Jul 2005
Location: USA
Posts: 707
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for all the help guys, but I'm having some trouble with it...

I get this error when I try to save the template:
Quote:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting ']' in /home/mysite/public_html/includes/adminfunctions_template.php(3537) : eval()'d code on line 14


Here is my plugin using forumhome_start
Code:
$p = parse_ini_file_quotes_safe("http://jabba.dynelabs.com/client/status.php");

function parse_ini_file_quotes_safe($f)
{
 $f=@file($f);
 for ($i=0;$i<@count($f);$i++)
 {
  $newsec=0;
  $w=@trim($f[$i]);
  if ($w)
  {
   if ((!$r) or ($sec))
   {
   if ((@substr($w,0,1)=="[") and (@substr($w,-1,1))=="]") {$sec=@substr($w,1,@strlen($w)-2);$newsec=1;}
   }
   if (!$newsec)
   {
   $w=@explode("=",$w);$k=@trim($w[0]);unset($w[0]); $v=@trim(@implode("=",$w));
   if ((@substr($v,0,1)=="\"") and (@substr($v,-1,1)=="\"")) {$v=@substr($v,1,@strlen($v)-2);}
   if ($sec) {$r[$sec][$k]=$v;} else {$r[$k]=$v;}
   }
  }
 }
 return $r;
}
And here is my template.
Code:
<if condition="$p['maintenance-mode']">
<FONT color=\"#FF8000\">Maintenance</FONT></B><BR>
<else /><if condition="$p['server-status']=='online'">
<B><FONT color=\"#00FF00\">Online</FONT></B><BR>
<else />
<B><FONT color=\"#FF0000\">Offline</FONT></B><BR>
</if>
</if>
 
 
Jabbas in Town<BR>
 
<B><FONT color="<if condition="$p['users-online']">#00FF00<else />#FF0000</if>">
	$p[users-online]</FONT></B><BR>
Reply With Quote
  #5  
Old 03-05-2006, 04:59 AM
Adrian Schneider's Avatar
Adrian Schneider Adrian Schneider is offline
 
Join Date: Jul 2004
Posts: 2,528
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try replacing <font color=\" with <font color=" (all occurances)

Everything else looks fine to me.
Reply With Quote
  #6  
Old 03-05-2006, 05:03 AM
Daniel's Avatar
Daniel Daniel is offline
 
Join Date: Jul 2005
Location: USA
Posts: 707
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

New version of the template
Code:
Server Status: <if condition="$p['maintenance-mode']">
<font color="#FF8000">Maintenance</FONT></B><BR>
<else /><if condition="$p['server-status']=='online'">
<B><font color="#00FF00">Online</FONT></B><BR>
<else />
<B><font color="#FF0000">Offline</FONT></B><BR>
</if>
</if>

<br />
Users Online: <B><font color="<if condition="$p['users-online']">#00FF00<else />#FF0000</if>">
	$p[users-online]</FONT></B>
Same error.

Here's the full version of the template, if needed.
Code:
<script type="text/javascript">
function clientPopup() {
    var clientUrl="http://dyne.zydeco.ath.cx/client/clientpopup.php";
    window.open(clientUrl, "_jabbaClient", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=932,height=675");
};
</script>
<tbody>
<tr>
<td class="thead" width="100%" colspan="6">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_shoutcast')"><img id="collapseimg_forumhome_shoutcast" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_shoutcast].gif" alt="" border="0" /></a>
<div class="smallfont"><b>JabbaTown BETA</b></div>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_shoutcast" style="$vbcollapse[collapseobj_forumhome_shoutcast]">
<tr>
<td rowspan="3" class="alt2" align="center"><A href="javascript:clientPopup();" ><img src="http://www.jabbacommunity.com/images/beta.gif" alt="JabbaTown BETA" border="0"></a></td>
<td valign="top" align="left" class="alt1">

<table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr>
        <td width="50%" class="alt1" align="center">
<a href="javascript:clientPopup();" ><img src="images/jabbatown.PNG" alt="JabbaTown BETA" border="0"></a>
<br />
<a href="http://www.jabbacommunity.com/faq.php?faq=fre_ask_q#faq_howbeta">Want an account?</a>
</td>
        <td rowspan="2" width="50%" align="center"><div class="smallfont"><b>Statistics</b>
<br />

Server Status: <if condition="$p['maintenance-mode']">
<font color="#FF8000">Maintenance</FONT></B><BR>
<else /><if condition="$p['server-status']=='online'">
<B><font color="#00FF00">Online</FONT></B><BR>
<else />
<B><font color="#FF0000">Offline</FONT></B><BR>
</if>
</if>

<br />
Users Online: <B><font color="<if condition="$p['users-online']">#00FF00<else />#FF0000</if>">
	$p[users-online]</FONT></B>

</div></td>
    </tr>
</table>
</td>
</tr>
</tbody>
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:46 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.03504 seconds
  • Memory Usage 2,244KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (7)bbcode_code
  • (2)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (6)postbit
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete