vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Including files in the template code? (https://vborg.vbsupport.ru/showthread.php?t=70261)

Hillard Malkeme 10-06-2004 12:58 PM

Including files in the template code?
 
Just to let you know I'm new to vbulletin. They guy we had setting up our forums is no longer with us so I have to pick up the slack. Well I've built a site that uses it's own include files for header,Navigation and a few others. The problem is I can't use the code I wrote for the site in the template.

Here is my code for my site that I would like to add into my template.
PHP Code:

<HTML>
<HEAD>
<META NAME="GENERATOR" Content="">
<TITLE>Pride Web Talk</TITLE>
<link rel='stylesheet' href='/Skins/Default/Default.css' type='text/css' />
</HEAD>
<BODY>
<?php include("Header.php");?>
<TABLE WIDTH=100% HEIGHT=75% BORDER=0 CELLSPACING=3 CELLPADDING=3>
    <TR>
        <TD valign=top width=130>
            <?php include("./Nav.php");?><BR>
            <?php include("./SiteStats.php");?>
        </TD>
        <TD align=center valign=top class="MainBody">

How can I add this code in my template and get it to work? I've tried searching but didn't find what I was looking for. Again I'm new to vbulletin so I may have found it and didn't know it.. :devious:

Dean C 10-06-2004 01:03 PM

Questions about modifying vBulletin's default behaviour and asking about modifications in general, should be posted in General vBulletin Questions. Please read the forum descriptions more carefully in future. I've moved your thread there for you :)

Thanks,
- Dean

Colin F 10-06-2004 01:18 PM

Well, first off, you won't be able to use php for sure in the templates.
The only templates that will parse php code are the phpinclude_start and _end templates.

I would check into replacing your templatecode with the html in the header and navbar template.

Hillard Malkeme 10-06-2004 01:55 PM

Quote:

Originally Posted by Colin F
Well, first off, you won't be able to use php for sure in the templates.
The only templates that will parse php code are the phpinclude_start and _end templates.

I would check into replacing your templatecode with the html in the header and navbar template.

So you are saying if I build a page using php (or ASP) I can't use it as a template for the forums?

How about I build everything with functions to either echo or return my HTML code. Can I include that file to one of the vbulletin php pages (Like global.php) and call the functions from inside the template code?

So if I had this function
PHP Code:

function OnlineCount(){
    
$datecut=Time()-900//900 = last 15 minutes
    
$sql "SELECT COUNT(*) AS sessions FROM session WHERE lastactivity >$datecut";
    
$result mysql_query($sql);
    
$fieldvalue mysql_fetch_row($result);
    return 
number_format($fieldvalue[0], 0".",",");


Could I call the function from the template code to display my return?

Colin F 10-06-2004 02:00 PM

What you would have to do is call the function and save it to a variable, which you can then call from the template.

so, in the *.php:
$online = OnlineCount();

and in the template just use $online

Hillard Malkeme 10-06-2004 02:04 PM

Quote:

Originally Posted by Colin F
What you would have to do is call the function and save it to a variable, which you can then call from the template.

so, in the *.php:
$online = OnlineCount();

and in the template just use $online

Ok I understand. Any suggestion on where I should include my php page with all my functions? Would global.php be my best bet?

And thank you for the help..

Colin F 10-06-2004 02:52 PM

global.php as well as functions.php are both loaded on every page.

Either should work

Hillard Malkeme 10-06-2004 03:04 PM

Thank you Colin..


All times are GMT. The time now is 09:02 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.01035 seconds
  • Memory Usage 1,736KB
  • 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
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)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