| 1 |
<?php
|
| 2 |
// $Id: phpbbforum.theme.custom.inc,v 1.5 2009/03/14 19:37:19 vb Exp $
|
| 3 |
/**
|
| 4 |
* Copyright 2008-2009 by Vadim G.B. (http://vgb.org.ru)
|
| 5 |
*/
|
| 6 |
|
| 7 |
////////////////////////////////////////////////////////////////////////////////
|
| 8 |
// See examples of code in file phpbbforum.theme.inc
|
| 9 |
////////////////////////////////////////////////////////////////////////////////
|
| 10 |
|
| 11 |
/*
|
| 12 |
* example_embed or example-embed
|
| 13 |
*/
|
| 14 |
|
| 15 |
function phpbbforum_set_style_example_embed($phpbb_theme_path) {
|
| 16 |
|
| 17 |
// edit your code here
|
| 18 |
|
| 19 |
//_phpbbforum_set_theme_css($phpbb_theme_path, 'example');
|
| 20 |
|
| 21 |
/*
|
| 22 |
// uncomment if your theme from prosilver
|
| 23 |
phpbbforum_set_style_prosilver($phpbb_theme_path);
|
| 24 |
*/
|
| 25 |
|
| 26 |
/*
|
| 27 |
// uncomment if your theme from subsilver2
|
| 28 |
phpbbforum_set_style_subsilver2($phpbb_theme_path);
|
| 29 |
*/
|
| 30 |
}
|
| 31 |
|
| 32 |
function phpbbforum_style_example_embed($phpbb_theme_path, $output) {
|
| 33 |
|
| 34 |
// edit your code here
|
| 35 |
|
| 36 |
phpbbforum_set_style_example_embed($phpbb_theme_path);
|
| 37 |
|
| 38 |
/*
|
| 39 |
// uncomment if your theme from prosilver
|
| 40 |
$endpos = _phpbbforum_set_head_script(0, $output);
|
| 41 |
$endpos = _phpbbforum_set_head_links_prosilver($endpos, $output);
|
| 42 |
*/
|
| 43 |
|
| 44 |
/*
|
| 45 |
// uncomment if your theme from subsilver2
|
| 46 |
$endpos = _phpbbforum_set_head_links_subsilver2(0, $output);
|
| 47 |
$endpos = _phpbbforum_set_head_script_subsilver2($endpos, $output);
|
| 48 |
*/
|
| 49 |
|
| 50 |
$output = _phpbbforum_get_html_body($endpos, $output);
|
| 51 |
|
| 52 |
return $output;
|
| 53 |
}
|