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

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

better control over session cache for multiview data

File size: 2.4 KB
RevLine 
[25617]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
[25791]13
[25617]14// +-----------------------------------------------------------------------+
15// | Plugin constants                                               |
16// +-----------------------------------------------------------------------+
17defined('ADMINTOOLS_ID') or define('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
[25655]32add_event_handler('init', 'admintools_init');
[25617]33
34add_event_handler('user_init', array(&$MultiView, 'user_init'));
35add_event_handler('init', array(&$MultiView, 'init'));
36
[25817]37add_event_handler('ws_add_methods', array('MultiView', 'register_ws'));
[25818]38add_event_handler('delete_user', array('MultiView', 'invalidate_cache'));
39add_event_handler('register_user', array('MultiView', 'invalidate_cache'));
[25617]40
[25817]41
[25617]42// +-----------------------------------------------------------------------+
43// | Plugin initialization                                                 |
44// +-----------------------------------------------------------------------+
[25655]45function admintools_init()
46{
[25791]47  global $MultiView;
48 
49  if (!defined('IN_ADMIN') && $MultiView->is_admin())
50  {
51    add_event_handler('loc_after_page_header', 'admintools_add_public_controller');
52    add_event_handler('loc_begin_picture', 'admintools_save_picture');
53    add_event_handler('loc_begin_index', 'admintools_save_category');
54  }
55 
56  load_language('plugin.lang', ADMINTOOLS_PATH);
57
[25617]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');
[25791]63 
[25617]64  // $conf['AdminTools'] = unserialize($conf['AdminTools']);
[25655]65}
Note: See TracBrowser for help on using the repository browser.