source: extensions/AdminTools/main.inc.php @ 25916

Last change on this file since 25916 was 25916, checked in by mistic100, 10 years ago

fix paths again

File size: 2.3 KB
Line 
1<?php
2/*
3Plugin Name: Admin Tools
4Version: auto
5Description: Do some admin task from the public pages
6Plugin URI: auto
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
12
13
14// +-----------------------------------------------------------------------+
15// | Plugin constants                                               |
16// +-----------------------------------------------------------------------+
17define('ADMINTOOLS_ID',       basename(dirname(__FILE__)));
18define('ADMINTOOLS_PATH' ,    PHPWG_PLUGINS_PATH . ADMINTOOLS_ID . '/');
19// define('ADMINTOOLS_ADMIN',    get_root_url() . 'admin.php?page=plugin-' . ADMINTOOLS_ID);
20define('ADMINTOOLS_VERSION',  'auto');
21
22
23// +-----------------------------------------------------------------------+
24// | Event handlers                                                    |
25// +-----------------------------------------------------------------------+
26include_once(ADMINTOOLS_PATH . 'include/events.inc.php');
27include_once(ADMINTOOLS_PATH . 'include/MultiView.class.php');
28
29global $MultiView;
30$MultiView = new MultiView();
31
32add_event_handler('init', 'admintools_init');
33
34add_event_handler('user_init', array(&$MultiView, 'user_init'));
35add_event_handler('init', array(&$MultiView, 'init'));
36
37add_event_handler('ws_add_methods', array('MultiView', 'register_ws'));
38add_event_handler('delete_user', array('MultiView', 'invalidate_cache'));
39add_event_handler('register_user', array('MultiView', 'invalidate_cache'));
40
41if (!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// +-----------------------------------------------------------------------+
52function 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}
Note: See TracBrowser for help on using the repository browser.