1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Admin Tools |
---|
4 | Version: auto |
---|
5 | Description: Do some admin task from the public pages |
---|
6 | Plugin URI: auto |
---|
7 | Author: Mistic |
---|
8 | Author URI: http://www.strangeplanet.fr |
---|
9 | */ |
---|
10 | |
---|
11 | defined('PHPWG_ROOT_PATH') or die('Hacking attempt!'); |
---|
12 | |
---|
13 | |
---|
14 | // +-----------------------------------------------------------------------+ |
---|
15 | // | Plugin constants | |
---|
16 | // +-----------------------------------------------------------------------+ |
---|
17 | defined('ADMINTOOLS_ID') or define('ADMINTOOLS_ID', basename(dirname(__FILE__))); |
---|
18 | define('ADMINTOOLS_PATH' , PHPWG_PLUGINS_PATH . ADMINTOOLS_ID . '/'); |
---|
19 | // define('ADMINTOOLS_ADMIN', get_root_url() . 'admin.php?page=plugin-' . ADMINTOOLS_ID); |
---|
20 | define('ADMINTOOLS_VERSION', 'auto'); |
---|
21 | |
---|
22 | |
---|
23 | // +-----------------------------------------------------------------------+ |
---|
24 | // | Event handlers | |
---|
25 | // +-----------------------------------------------------------------------+ |
---|
26 | include_once(ADMINTOOLS_PATH . 'include/events.inc.php'); |
---|
27 | include_once(ADMINTOOLS_PATH . 'include/MultiView.class.php'); |
---|
28 | |
---|
29 | global $MultiView; |
---|
30 | $MultiView = new MultiView(); |
---|
31 | |
---|
32 | add_event_handler('init', 'admintools_init'); |
---|
33 | |
---|
34 | add_event_handler('user_init', array(&$MultiView, 'user_init')); |
---|
35 | add_event_handler('init', array(&$MultiView, 'init')); |
---|
36 | |
---|
37 | add_event_handler('ws_add_methods', array('MultiView', 'register_ws')); |
---|
38 | add_event_handler('delete_user', array('MultiView', 'invalidate_cache')); |
---|
39 | add_event_handler('register_user', array('MultiView', 'invalidate_cache')); |
---|
40 | |
---|
41 | if (!defined('IN_ADMIN')) |
---|
42 | { |
---|
43 | add_event_handler('loc_after_page_header', 'admintools_add_public_controller'); |
---|
44 | add_event_handler('loc_begin_picture', 'admintools_save_picture'); |
---|
45 | add_event_handler('loc_begin_index', 'admintools_save_category'); |
---|
46 | } |
---|
47 | |
---|
48 | |
---|
49 | // +-----------------------------------------------------------------------+ |
---|
50 | // | Plugin initialization | |
---|
51 | // +-----------------------------------------------------------------------+ |
---|
52 | function admintools_init() |
---|
53 | { |
---|
54 | global $MultiView; |
---|
55 | |
---|
56 | load_language('plugin.lang', ADMINTOOLS_PATH); |
---|
57 | |
---|
58 | // global $conf; |
---|
59 | |
---|
60 | // include_once(ADMINTOOLS_PATH . 'maintain.inc.php'); |
---|
61 | // $maintain = new AdminTools_maintain(ADMINTOOLS_ID); |
---|
62 | // $maintain->autoUpdate(ADMINTOOLS_VERSION, 'install'); |
---|
63 | |
---|
64 | // $conf['AdminTools'] = unserialize($conf['AdminTools']); |
---|
65 | } |
---|