1 | <?php
|
---|
2 | /*
|
---|
3 | Plugin Name: Plugin for XPressME
|
---|
4 | Plugin URI: http://www.toemon.com
|
---|
5 | Description: Plugin for XPressME (custom function,filter,action)
|
---|
6 | Author: toemon
|
---|
7 | Version: 0.001
|
---|
8 | Author URI: http://www.toemon.com
|
---|
9 | */
|
---|
10 | require_once('xpressme_class.php');
|
---|
11 |
|
---|
12 | require_once dirname( __FILE__ ).'/include/custom_functions.php' ; // XPressME functions for themes
|
---|
13 | require_once dirname( __FILE__ ).'/include/xpress_common_functions.php' ;
|
---|
14 |
|
---|
15 | $xoops_db = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
|
---|
16 | $xoops_db->prefix = get_xoops_prefix();
|
---|
17 | $xoops_db->tables = array('modules', 'newblocks', 'users');
|
---|
18 |
|
---|
19 | $XPressME = new XPressME_Class();
|
---|
20 |
|
---|
21 | require_once dirname( __FILE__ ).'/include/pluggable-override.php' ;
|
---|
22 |
|
---|
23 | add_action('admin_menu', array(&$XPressME, 'add_option_page'));
|
---|
24 | add_action('admin_head', array(&$XPressME, 'add_admin_head'));
|
---|
25 | add_filter("upload_dir",array(&$XPressME, 'xpress_upload_filter'), 1); // Change wp-include/wp_upload_dir()
|
---|
26 | if (!$XPressME->is_save_post_revision){
|
---|
27 | remove_action( 'pre_post_update', 'wp_save_post_revision' ); // Not Save Post Revision
|
---|
28 | }
|
---|
29 |
|
---|
30 | //XOOPS Bloack Cache Refresh
|
---|
31 | add_action("comment_post", "block_cache_refresh");
|
---|
32 | add_action("edit_comment", "block_cache_refresh");
|
---|
33 | add_action("wp_set_comment_status","block_cache_refresh"); //wp_delete_comment() at deleted
|
---|
34 | add_action("deleted_post", "block_cache_refresh");
|
---|
35 | add_action("publish_post", "block_cache_refresh");
|
---|
36 | add_action("edit_post", "block_cache_refresh");
|
---|
37 | add_action("private_to_published", "block_cache_refresh");
|
---|
38 | add_action("transition_post_status", "block_cache_refresh");
|
---|
39 |
|
---|
40 | add_action("the_content", "set_post_views_count");
|
---|
41 |
|
---|
42 | //XOOPS notifiction
|
---|
43 | require_once dirname( __FILE__ ).'/include/notify_functions.php' ;
|
---|
44 | add_action("transition_post_status", "onaction_publish_post_notify" ,10 , 3);
|
---|
45 | // add_action("edit_post", "onaction_edit_post_notify");
|
---|
46 | add_action("comment_post", "onaction_comment_notify");
|
---|
47 | // add_action("approve_comment" , "onaction_comment_apobe_notify");
|
---|
48 | add_action("wp_set_comment_status" , "onaction_comment_apobe_notify");
|
---|
49 |
|
---|
50 | // user data sync user_sync_to_xoops($user_id)
|
---|
51 | require_once dirname( __FILE__ ).'/include/user_sync_xoops.php' ;
|
---|
52 | add_action('profile_update', 'user_sync_to_xoops');
|
---|
53 | add_action('user_register', 'user_sync_to_xoops');
|
---|
54 | //require_once('../include/custom_functions.php');
|
---|
55 |
|
---|
56 | //D3Forum Comment Integration
|
---|
57 | if ($XPressME->is_use_d3forum){
|
---|
58 | require_once dirname( __FILE__ ).'/include/d3forum_comment_synchro.php' ;
|
---|
59 | add_action("comment_post", "onaction_comment_post");
|
---|
60 | add_action("edit_comment", "onaction_edit_comment");
|
---|
61 | add_action("delete_comment","onaction_delete_comment");
|
---|
62 | add_action("delete_post", "onaction_delete_post");
|
---|
63 | add_action("wp_set_comment_status" , "onaction_comment_apobe");
|
---|
64 |
|
---|
65 |
|
---|
66 | add_filter('comments_template', "disp_d3forum_comments" );
|
---|
67 |
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | // SQL debug windows
|
---|
72 | add_filter('query', array(&$XPressME, 'xpress_sql_debug'));
|
---|
73 | add_action('admin_footer', array(&$XPressME, 'displayDebugLog'));
|
---|
74 | add_action('get_footer', array(&$XPressME, 'displayDebugLog'));
|
---|
75 | ?> |
---|