/[drupal]/contributions/modules/phpbbforum/phpbbforum.theme.custom-sample.inc
ViewVC logotype

Contents of /contributions/modules/phpbbforum/phpbbforum.theme.custom-sample.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Mon Mar 16 19:44:15 2009 UTC (8 months, 1 week ago) by vb
Branch: MAIN
CVS Tags: DRUPAL-6--2-0-ALPHA7, DRUPAL-6--2-0-BETA1, DRUPAL-6--2-0-BETA2, DRUPAL-6--2-0-BETA3, DRUPAL-6--2-0-BETA4, DRUPAL-6--2-0-BETA5, DRUPAL-6--2-0-BETA6, DRUPAL-6--2-0-BETA7, DRUPAL-6--2-0-ALPHA9, DRUPAL-5--2-0-BETA6, DRUPAL-6--2-0-ALPHA10, DRUPAL-6--2-0-ALPHA8, HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
added phpbbforum.theme.custom-sample.inc and changed phpbbforum.theme.inc
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 }

  ViewVC Help
Powered by ViewVC 1.1.2