mDelegateManager->add( 'Legacy.Admin.Event.ModuleInstall.' . ucfirst($mydirname) . '.Success' , 'xpress_message_append_oninstall' ) ; $ret = array() ; } else { if( ! is_array( $ret ) ) $ret = array() ; } $db =& Database::getInstance() ; $mid = $module->getVar('mid') ; //xpress global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles, $wp_query; define("WP_INSTALLING", true); $site_url= XOOPS_URL."/modules/".$mydirname; $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname; $path = $mydirpath . '/'; if (file_exists($path . 'wp-load.php')) { require_once $path . 'wp-load.php'; } else { require_once $path . 'wp-config.php'; } include_once($mydirpath . '/wp-admin/upgrade-functions.php'); wp_cache_flush(); make_db_current_silent(); $option_desc = __('WordPress web address'); $wpdb->query("INSERT INTO $wpdb->options (option_id, blog_id, option_name,option_value, autoload) VALUES ('1', '0', 'siteurl','$site_url', 'yes')"); $wpdb->query("INSERT INTO $wpdb->options (option_id, blog_id, option_name,option_value, autoload) VALUES ('1', '0', 'home','$site_url', 'yes')"); populate_options(); populate_roles(); // Rewrite Option for Xpress // update_option("blog_charset", wp_blog_charset()); update_option('blogname', ucfirst($mydirname) . ' ' . _MI_XPRESS_NAME ); update_option('blogdescription', 'WordPress for XOOPS'); update_option("admin_email", $GLOBALS["xoopsConfig"]['adminmail']); update_option("ping_sites", "http://rpc.pingomatic.com/\nhttp://ping.xoopsforge.com/"); update_option("home", $site_url); update_option("siteurl", $site_url); // update_option("template", "xpress_st"); // update_option("stylesheet", "xpress_st"); update_option("what_to_show", "posts"); /* add new option for uploads */ // update_option('uploads_use_yearmonth_folders', 1); // update_option('upload_path', $module->getVar("dirname")); /* activate the tag plugin */ // $plugin_current = "terong_related.php"; // update_option('active_plugins', array($plugin_current)); // include(dirname(__FILE__) . '/../wp-content/plugins/'.$plugin_current); // do_action('activate_'.$plugin_current); // Admin User Data write // Change uid field $wpdb->query("ALTER TABLE $wpdb->posts CHANGE `post_author` `post_author` mediumint(8) NOT NULL DEFAULT '0'"); $ID = is_object($GLOBALS["xoopsUser"])?$GLOBALS["xoopsUser"]->getVar("uid"):1; require_once($mydirpath . '/include/user_sync.php'); xpress_user_sync($ID); // Set Default data wp_install_defaults($ID); // generate_page_uri_index(); // create views table $xp_prefix = $mydirname; if ($xp_prefix == 'wordpress'){ $xp_prefix = 'wp'; } $views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ; $charset_collate = ''; if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) { if ( ! empty($wpdb->charset) ) $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset"; if ( ! empty($wpdb->collate) ) $charset_collate .= " COLLATE $wpdb->collate"; } $views_queries ="CREATE TABLE $views_table ( post_id bigint(20) unsigned NOT NULL default '0', post_views bigint(20) unsigned NOT NULL default '0', KEY post_id (post_id) )$charset_collate;"; dbDelta($views_queries); $d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ; $views_queries ="CREATE TABLE $d3forum_link ( comment_ID bigint(20) unsigned NOT NULL default '0', post_id int(10) unsigned NOT NULL default '0' , wp_post_ID bigint(20) unsigned NOT NULL default '0', KEY post_id (post_id) )$charset_collate;"; dbDelta($views_queries); // make templates // include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ; // $ret = xpress_install_templates($mid,$mydirname); return true ; } endif; if( ! function_exists( 'xpress_message_append_oninstall' ) ) : function xpress_message_append_oninstall( &$module_obj , &$log ) { if( is_array( @$GLOBALS['ret'] ) ) { foreach( $GLOBALS['ret'] as $message ) { $log->add( strip_tags( $message ) ) ; } } // use mLog->addWarning() or mLog->addError() if necessary } endif; ?>