3 /***************************************************************************
\r
6 * copyright : (C) 2003 - 2005 CyberAlien
\r
7 * support : http://www.phpbbstyles.com
\r
11 * file revision : 70
\r
12 * project revision : 78
\r
13 * last modified : 05 Dec 2005 13:54:54
\r
15 ***************************************************************************/
\r
17 /***************************************************************************
\r
19 * This program is free software; you can redistribute it and/or modify
\r
20 * it under the terms of the GNU General Public License as published by
\r
21 * the Free Software Foundation; either version 2 of the License, or
\r
22 * (at your option) any later version.
\r
24 ***************************************************************************/
\r
26 define('IN_PHPBB', 1);
\r
27 $phpbb_root_path = "./../";
\r
28 $no_page_header = true;
\r
29 require($phpbb_root_path . 'extension.inc');
\r
30 require('./pagestart.' . $phpEx);
\r
32 define('IN_XS', true);
\r
33 define('NO_XS_HEADER', true);
\r
34 include_once('xs_include.' . $phpEx);
\r
36 $template->set_filenames(array('body' => XS_TPL_PATH . 'frame_top.tpl'));
\r
38 $template->assign_block_vars('left_nav', array(
\r
39 'URL' => append_sid('xs_index.'.$phpEx),
\r
40 'TEXT' => $lang['xs_menu_lc']
\r
42 /* $template->assign_block_vars('left_nav', array(
\r
43 'URL' => append_sid('xs_download.'.$phpEx),
\r
44 'TEXT' => $lang['xs_download_styles_lc']
\r
46 $template->assign_block_vars('left_nav', array(
\r
47 'URL' => append_sid('xs_import.'.$phpEx),
\r
48 'TEXT' => $lang['xs_import_styles_lc']
\r
50 $template->assign_block_vars('left_nav', array(
\r
51 'URL' => append_sid('xs_install.'.$phpEx),
\r
52 'TEXT' => $lang['xs_install_styles_lc']
\r
54 $template->assign_block_vars('left_nav', array(
\r
55 'URL' => 'http://www.phpbbstyles.com',
\r
56 'TEXT' => $lang['xs_support_forum_lc']
\r
60 $template->pparse('body');
\r