source: extensions/takeatour/admin.php @ 27898

Last change on this file since 27898 was 27898, checked in by flop25, 10 years ago

first upload
working WIP
one tour available

File size: 518 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5global $template, $conf, $user, $page;
6
7load_language('plugin.lang', PHPWG_PLUGINS_PATH .'TakeATour/');
8$template->assign(
9  array(
10    'F_ACTION' => get_root_url().'admin.php',
11    )
12  );
13/*
14$template->func_combine_css(array(
15        'path' => 'plugins/TakeATour/template/admin.css',
16        )
17);*/
18
19$template->set_filename('plugin_admin_content', dirname(__FILE__) .'/tpl/admin.tpl');
20$template->assign_var_from_handle('ADMIN_CONTENT', 'plugin_admin_content');
21
22?>
Note: See TracBrowser for help on using the repository browser.