Changeset 789 for trunk/xpressme_integration_kit
- Timestamp:
- Jun 3, 2011, 10:30:52 AM (13 years ago)
- Location:
- trunk/xpressme_integration_kit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/class/modInfo_class.php
r786 r789 83 83 $this->xoops_upload_url = $this->_get_xoops_upload_url(); 84 84 $this->xoops_cache_path = $this->_get_xoops_cache_path(); 85 $this->module_ path=dirname(dirname(__FILE__));86 $this->module_ name=basename($this->module_path);85 $this->module_name = basename(dirname(dirname(__FILE__))); 86 $this->module_path = $this->xoops_root_path . '/modules/' . $this->module_name; 87 87 $this->module_url = $this->xoops_url . '/modules/' . $this->module_name; 88 88 $this->xoops_lang = @$GLOBALS["xoopsConfig"]['language']; -
trunk/xpressme_integration_kit/include/wp_installer.php
r757 r789 46 46 //xpress 47 47 global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles, $wp_query,$wp_embed; 48 global $modInfo; 48 49 $msgs = array(); 49 50 50 $site_url= XOOPS_URL."/modules/".$mydirname;51 $mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;51 $site_url= $modInfo->get_module_url(); 52 $mydirpath = $modInfo->get_module_path(); 52 53 $path = $mydirpath . '/'; 53 54 $site_name = ucfirst($mydirname) . ' ' . _MI_XP2_NAME; … … 106 107 107 108 // Rewrite Option for Xpress 108 $xoops_conf_tbl = XOOPS_DB_PREFIX. '_config' ;109 $xoops_conf_tbl = $modInfo->get_xoops_db_prefix() . '_config' ; 109 110 $sql = "SELECT conf_value FROM $xoops_conf_tbl WHERE `conf_name` = 'default_TZ'"; 110 111 $xoops_default_TZ = $wpdb->get_var($sql); … … 147 148 148 149 // create XPressME table 149 $xp_prefix = preg_replace('/wordpress/','wp',$mydirname);150 $views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ;150 $xp_prefix = $modInfo->get_module_db_prefix(); 151 $views_table = $xp_prefix .'views' ; 151 152 152 153 $charset_collate = ''; … … 166 167 $msgs[] = "$views_table table of XPressME was made.<br />"; 167 168 168 $d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ;169 $d3forum_link = $xp_prefix .'d3forum_link' ; 169 170 $views_queries ="CREATE TABLE $d3forum_link ( 170 171 comment_ID bigint(20) unsigned NOT NULL default '0', … … 178 179 $msgs[] = "$d3forum_link table of XPressME was made.<br />"; 179 180 180 $group_role = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_group_role' ;181 $group_role = $xp_prefix .'group_role' ; 181 182 $views_queries ="CREATE TABLE $group_role ( 182 183 groupid smallint(5) unsigned NOT NULL default '0', … … 194 195 $wpdb->query($sql); 195 196 196 $notify_reserve = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_notify_reserve' ;197 $notify_reserve = $xp_prefix .'notify_reserve' ; 197 198 $queries ="CREATE TABLE $notify_reserve ( 198 199 notify_reserve_id bigint(20) NOT NULL AUTO_INCREMENT ,
Note: See TracChangeset
for help on using the changeset viewer.