XPressME Integration Kit

Trac

source: trunk/wp-content/plugins/xpressme/xpressme.php @ 88

Last change on this file since 88 was 88, checked in by toemon, 15 years ago

SQLデバッグ用表示機能実装 #58

File size: 2.3 KB
Line 
1<?php
2/*
3Plugin Name: Plugin for XPressME
4Plugin URI: http://www.toemon.com
5Description: Plugin for XPressME (custom function,filter,action)
6Author: toemon
7Version: 0.001
8Author URI: http://www.toemon.com
9*/
10require_once('xpressme_class.php');
11
12require_once dirname( __FILE__ ).'/include/custom_functions.php' ;
13
14$xoops_db = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
15$xoops_db->prefix = get_xoops_prefix();
16$xoops_db->tables = array('modules', 'newblocks', 'users');
17
18$XPressME = new XPressME_Class();
19
20require_once dirname( __FILE__ ).'/include/pluggable-override.php' ;
21
22add_action('admin_menu', array(&$XPressME, 'add_option_page'));
23add_action('admin_head', array(&$XPressME, 'add_admin_head'));
24add_filter("upload_dir",array(&$XPressME, 'xpress_upload_filter'),      1);             // Change wp-include/wp_upload_dir()
25if (!$XPressME->is_save_post_revision){
26        remove_action( 'pre_post_update', 'wp_save_post_revision' );                    // Not Save Post Revision
27}
28add_action("comment_post",      "block_cache_refresh");
29add_action("edit_comment",      "block_cache_refresh");
30add_action("delete_comment","block_cache_refresh");
31add_action("delete_post",       "block_cache_refresh");
32add_action("publish_post",      "block_cache_refresh");
33add_action("edit_post",         "block_cache_refresh");
34add_action("private_to_published",      "block_cache_refresh");
35add_action("wp_set_comment_status" , "block_cache_refresh");
36
37add_action("the_content",       "set_post_views_count");
38
39//XOOPS notifiction
40require_once dirname( __FILE__ ).'/include/notify_functions.php' ;
41add_action("private_to_published",      "onaction_publish_post_notify");
42//      add_action("edit_post", "onaction_edit_post_notify");
43add_action("comment_post",      "onaction_comment_notify");
44//      add_action("approve_comment" , "onaction_comment_apobe_notify");
45add_action("wp_set_comment_status" , "onaction_comment_apobe_notify");
46
47// user data sync  user_sync_to_xoops($user_id)
48require_once dirname( __FILE__ ).'/include/user_sync_xoops.php' ;
49add_action('profile_update', 'user_sync_to_xoops');
50add_action('user_register', 'user_sync_to_xoops');
51//require_once('../include/custom_functions.php');
52
53// SQL debug windows
54add_filter('query', array(&$XPressME, 'xpress_sql_debug'));
55add_action('admin_footer', array(&$XPressME, 'displayDebugLog'));
56add_action('get_footer', array(&$XPressME, 'displayDebugLog'));
57
58?>
Note: See TracBrowser for help on using the repository browser.