vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How to put vb into html page? (https://vborg.vbsupport.ru/showthread.php?t=205878)

Whiteyez 02-19-2009 08:05 AM

How to put vb into html page?
 
Is there any way to do something like this:

http://img503.imageshack.us/img503/6194/pagenn4.png

Into the body of the html or some other way.

Thanks

--------------- Added [DATE]1235039687[/DATE] at [TIME]1235039687[/TIME] ---------------

I found this, but i can't get this to work, it gives me nothing.

Admin CP -> Styles & Templates -> Style Manager -> Common Templates (in the menu)

The header and footer templates contain the top and bottom of the layout HTML. You can edit these templates to wrap your forum in some custom layout.

If you have layout code in some central file, then you can capture the output of that file by adding a plugin:

Admin CP -> Plugin System -> Add New Plugin

Create a new plugin for the global_start hook location. Use code like this:

Code:

ob_start();
require("yourheader.html");
$header_contents = ob_get_contents();
ob_end_clean();

Change the red code to point to your file. Now you can use this variable in the header for example:

Code:

$header_contents
...and it will parse to the output of your file.

Lynne 02-19-2009 03:46 PM

If you have an html page, then it's not going to be able to use any plugins or templates. It's static - meaning you may add no code into it (except javascript or similar). If you want to put the style from your forum into an html page, you will have to just copy the page source for the page.

Whiteyez 02-19-2009 03:54 PM

I found it..thanks anyway..


All times are GMT. The time now is 01:41 PM.

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.01046 seconds
  • Memory Usage 1,713KB
  • 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_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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