XPressME Integration Kit

Trac


Ignore:
Timestamp:
May 23, 2011, 3:03:57 PM (13 years ago)
Author:
toemon
Message:

ConfigFromXoopsクラスを廃止し、modInfoクラスを使用するように変更
WP2.2以下で使用するテンプレートold_templateの廃止

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Ver3.0/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_class.php

    r639 r757  
    5555        function setDefault() 
    5656        { 
    57                 global $xoops_config; 
     57                global $modInfo; 
    5858                $this->is_use_xoops_upload_path = true; 
    5959                $this->is_use_xoops_upload_path = true; 
     
    117117        function SettingValueWrite($mode) 
    118118        { 
    119                 global $xoops_config; 
     119                global $modInfo; 
    120120 
    121121                $write_options = array ( 
     
    442442                } // end of loop 
    443443 
    444                 global $xoops_config; 
     444                global $modInfo; 
    445445 
    446446                $table = get_wp_prefix() . 'group_role';         
     
    788788         
    789789        function d3forum_option($do_message = ''){ 
    790                 global $xoops_db,$xoops_config; 
     790                global $xoops_db,$modInfo; 
    791791                 
    792792                $multi_blog_use_d3forum = true; 
     
    809809                        // Form making for forum selection of D3forum 
    810810                        $modules_table = get_xoops_prefix() .'modules'; 
    811                         $sql = "SELECT mid,name,isactive,dirname FROM $modules_table WHERE isactive = 1"; 
     811                        $sql = "SELECT name,isactive,dirname FROM $modules_table WHERE isactive = 1"; 
    812812                        $modules = $xoops_db->get_results($sql); 
    813813                        foreach ($modules as $module) { 
     
    10511051        function xpress_upload_filter($uploads) 
    10521052        { 
    1053                 global $xoops_config; 
     1053                global $modInfo; 
    10541054                global $blog_id,$blogname; 
    10551055                 
    10561056                if ($this->is_use_xoops_upload_path){ 
    10571057                        $wordpress_dir = ABSPATH ; 
    1058                         $xoops_dir = $xoops_config->xoops_upload_path . '/'; 
     1058                        $xoops_dir = $modInfo->get_xoops_upload_path() . '/'; 
    10591059                        if (xpress_is_multiblog() && $blog_id <> BLOG_ID_CURRENT_SITE){ 
    1060                                 $wordpress_base_url = $xoops_config->module_url; 
     1060                                $wordpress_base_url = $modInfo->get_module_url(); 
    10611061                        } else { 
    10621062                                $wordpress_base_url = get_option( 'siteurl' ); 
    10631063                        } 
    1064                         $xoops_upload_url = $xoops_config->xoops_upload_url; 
     1064                        $xoops_upload_url = $modInfo->get_xoops_upload_url(); 
    10651065                        // @rmdir($uploads[path]);  //remove wordpress side uploads_dir  
    10661066                         
Note: See TracChangeset for help on using the changeset viewer.