source: extensions/skeleton/include/skeleton_page.inc.php @ 18858

Last change on this file since 18858 was 18858, checked in by mistic100, 11 years ago

UNIX EOL style

File size: 469 bytes
Line 
1<?php
2defined('SKELETON_PATH') or die('Hacking attempt!');
3
4global $page, $template, $conf, $user, $tokens, $pwg_loaded_plugins;
5
6
7# DO SOME STUFF HERE... or not !
8
9
10$template->assign(array(
11  'INTRO_CONTENT' => load_language('intro.html', SKELETON_PATH, array('return'=>true)),
12  'SKELETON_PATH' => SKELETON_PATH,
13  'SKELETON_ABS_PATH' => realpath(SKELETON_PATH).'/',
14  ));
15
16$template->set_filename('index', realpath(SKELETON_PATH . 'template/skeleton_page.tpl'));
17
18?>
Note: See TracBrowser for help on using the repository browser.