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