Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/09/2012 09:38:45 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Remove a bunch of unneeded globals and clean up some code in Core component. See #3989.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/admin/bp-core-schema.php

    r5259 r5683  
    1616
    1717function bp_core_install_notifications() {
    18     global $wpdb;
    19 
    20     $charset_collate = bp_core_set_charset();
    21     $bp_prefix = bp_core_get_table_prefix();
     18
     19    $sql             = array();
     20    $charset_collate = bp_core_set_charset();
     21    $bp_prefix       = bp_core_get_table_prefix();
    2222
    2323    $sql[] = "CREATE TABLE {$bp_prefix}bp_notifications (
     
    3939               ) {$charset_collate};";
    4040
    41     dbDelta($sql);
     41    dbDelta( $sql );
    4242}
    4343
    4444function bp_core_install_activity_streams() {
    45     global $wpdb;
    46 
    47     $charset_collate = bp_core_set_charset();
    48     $bp_prefix = bp_core_get_table_prefix();
     45
     46    $sql             = array();
     47    $charset_collate = bp_core_set_charset();
     48    $bp_prefix       = bp_core_get_table_prefix();
    4949
    5050    $sql[] = "CREATE TABLE {$bp_prefix}bp_activity (
     
    8484               ) {$charset_collate};";
    8585
    86     dbDelta($sql);
     86    dbDelta( $sql );
    8787}
    8888
    8989function bp_core_install_friends() {
    90     global $wpdb;
    91 
    92     $charset_collate = bp_core_set_charset();
    93     $bp_prefix = bp_core_get_table_prefix();
     90
     91    $sql             = array();
     92    $charset_collate = bp_core_set_charset();
     93    $bp_prefix       = bp_core_get_table_prefix();
    9494
    9595    $sql[] = "CREATE TABLE {$bp_prefix}bp_friends (
     
    104104               ) {$charset_collate};";
    105105
    106     dbDelta($sql);
     106    dbDelta( $sql );
    107107}
    108108
    109109function bp_core_install_groups() {
    110     global $wpdb;
    111 
    112     $charset_collate = bp_core_set_charset();
    113     $bp_prefix = bp_core_get_table_prefix();
     110
     111    $sql             = array();
     112    $charset_collate = bp_core_set_charset();
     113    $bp_prefix       = bp_core_get_table_prefix();
    114114
    115115    $sql[] = "CREATE TABLE {$bp_prefix}bp_groups (
     
    156156               ) {$charset_collate};";
    157157
    158     dbDelta($sql);
     158    dbDelta( $sql );
    159159}
    160160
    161161function bp_core_install_private_messaging() {
    162     global $wpdb;
    163 
    164     $charset_collate = bp_core_set_charset();
    165     $bp_prefix = bp_core_get_table_prefix();
     162
     163    $sql             = array();
     164    $charset_collate = bp_core_set_charset();
     165    $bp_prefix       = bp_core_get_table_prefix();
    166166
    167167    $sql[] = "CREATE TABLE {$bp_prefix}bp_messages_messages (
     
    199199               ) {$charset_collate};";
    200200
    201     dbDelta($sql);
     201    dbDelta( $sql );
    202202}
    203203
     
    205205    global $wpdb;
    206206
    207     $charset_collate = bp_core_set_charset();
    208     $bp_prefix = bp_core_get_table_prefix();
     207    $sql             = array();
     208    $charset_collate = bp_core_set_charset();
     209    $bp_prefix       = bp_core_get_table_prefix();
    209210
    210211    bp_update_option( 'bp-xprofile-base-group-name', _x( 'Base', 'First XProfile group name', 'buddypress' ) );
     
    275276
    276277function bp_core_install_blog_tracking() {
    277     global $wpdb;
    278 
    279     $charset_collate = bp_core_set_charset();
    280     $bp_prefix = bp_core_get_table_prefix();
     278
     279    $sql             = array();
     280    $charset_collate = bp_core_set_charset();
     281    $bp_prefix       = bp_core_get_table_prefix();
    281282
    282283    $sql[] = "CREATE TABLE {$bp_prefix}bp_user_blogs (
     
    297298               ) {$charset_collate};";
    298299
    299     dbDelta($sql);
     300    dbDelta( $sql );
    300301}
    301302
Note: See TracChangeset for help on using the changeset viewer.