XPressME Integration Kit

Trac


Ignore:
Timestamp:
Feb 9, 2013, 8:47:25 AM (12 years ago)
Author:
toemon
Message:

Deprecated. 'Database::getInstance();' is deprecated since XOOPS 2.5.4 fixed #423

Location:
branches/Ver2.4/xpressme_integration_kit/include
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/Ver2.4/xpressme_integration_kit/include/data.inc.php

    r583 r835  
    250250if( ! function_exists( 'get_blog_option' ) ) { 
    251251        function get_blog_option($option_table,$option_name){ 
    252                 $xoopsDB =& Database::getInstance(); 
     252                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    253253 
    254254                $sql = "SELECT option_value FROM $option_table WHERE option_name = '" . $option_name . "'"; 
  • branches/Ver2.4/xpressme_integration_kit/include/oninstall.php

    r814 r835  
    3535        } 
    3636 
    37         $db =& Database::getInstance() ; 
     37        $db =& XoopsDatabaseFactory::getDatabaseConnection() ; 
    3838        $mid = $module->getVar('mid') ; 
    3939 
  • branches/Ver2.4/xpressme_integration_kit/include/onuninstall.php

    r583 r835  
    2222        } 
    2323 
    24         $db =& Database::getInstance() ; 
     24        $db =& XoopsDatabaseFactory::getDatabaseConnection() ; 
    2525        $mid = $module->getVar('mid') ; 
    2626         
  • branches/Ver2.4/xpressme_integration_kit/include/onupdate.php

    r814 r835  
    2121        } 
    2222 
    23         $db =& Database::getInstance() ; 
     23        $db =& XoopsDatabaseFactory::getDatabaseConnection() ; 
    2424        $mid = $module->getVar('mid') ; 
    2525         
     
    8282                global $xoopsModule; 
    8383                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname); 
    84                 $xoopsDB =& Database::getInstance(); 
     84                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    8585                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options'); 
    8686 
     
    9494                global $xoopsModule; 
    9595                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname); 
    96                 $xoopsDB =& Database::getInstance(); 
     96                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    9797                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options'); 
    9898 
     
    106106                global $xoopsModule; 
    107107                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname); 
    108                 $xoopsDB =& Database::getInstance(); 
     108                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    109109                $option_table = $xoopsDB->prefix($wp_prefix . '_options'); 
    110110 
     
    137137                global $xoopsModule; 
    138138                $wp_prefix = preg_replace('/wordpress/','wp',$mydirname); 
    139                 $xoopsDB =& Database::getInstance(); 
     139                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    140140                $db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options'); 
    141141 
     
    180180function xpress_table_make($module, $mydirname) 
    181181{ 
    182         $db =& Database::getInstance() ; 
     182        $db =& XoopsDatabaseFactory::getDatabaseConnection() ; 
    183183        $mid = $module->getVar('mid') ; 
    184184 
     
    306306                global $xoopsModule; 
    307307                 
    308                 $xoopsDB =& Database::getInstance(); 
     308                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    309309                $xpress_prefix = $xoopsDB->prefix(preg_replace('/wordpress/','wp',$mydirname) . '_'); 
    310310                $db_enhanced = $xpress_prefix . $table_name; 
     
    326326function is_found_table_column($table,$column){ 
    327327                global $xoopsModule; 
    328                 $xoopsDB =& Database::getInstance(); 
     328                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    329329 
    330330                $sql = "DESCRIBE $table $column"; 
  • branches/Ver2.4/xpressme_integration_kit/include/search.php

    r689 r835  
    107107if( ! function_exists( 'get_blog_option' ) ) { 
    108108        function get_blog_option($option_table,$option_name){ 
    109                 $xoopsDB =& Database::getInstance(); 
     109                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    110110 
    111111                $sql = "SELECT option_value FROM $option_table WHERE option_name = '" . $option_name . "'"; 
  • branches/Ver2.4/xpressme_integration_kit/include/sitemap.plugin.php

    r583 r835  
    6464                global $sitemap_configs; 
    6565                 
    66                 $xoopsDB =& Database::getInstance(); 
     66                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    6767                 
    6868                $sitemap = array(); 
     
    150150if( ! function_exists( 'get_blog_option' ) ) { 
    151151        function get_blog_option($option_table,$option_name){ 
    152                 $xoopsDB =& Database::getInstance(); 
     152                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    153153 
    154154                $sql = "SELECT option_value FROM $option_table WHERE option_name = '" . $option_name . "'"; 
  • branches/Ver2.4/xpressme_integration_kit/include/xpress_block_render.php

    r802 r835  
    5252                        $options_string .= $val; 
    5353                } 
    54                         $xoopsDB =& Database::getInstance(); 
     54                        $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    5555                        $block_tbl = $xoopsDB->prefix('newblocks');      
    5656                        $module_dir = XOOPS_ROOT_PATH . '/modules/' . $mydirname; 
     
    6767        function get_block_mid($mydirname) 
    6868        { 
    69                         $xoopsDB =& Database::getInstance(); 
     69                        $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    7070                        $modules_tbl = $xoopsDB->prefix('modules'); 
    7171 
     
    8484                 
    8585                if (is_null($wpdb)){ 
    86                         $xoopsDB =& Database::getInstance(); 
     86                        $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    8787                        $wp_prefix = preg_replace('/wordpress/','wp',$mydirname); 
    8888 
     
    312312                $xoopsModule =& $module_handler->getByDirname($mydirname); 
    313313                $mid = $xoopsModule->getVar('mid'); 
    314                 $xoopsDB =& Database::getInstance(); 
     314                $xoopsDB =& XoopsDatabaseFactory::getDatabaseConnection(); 
    315315                $db_config = $xoopsDB->prefix('config'); 
    316316             
Note: See TracChangeset for help on using the changeset viewer.