Ticket #21734: remove-global-terms.diff
File remove-global-terms.diff, 15.8 KB (added by , 12 years ago) |
---|
-
wp-includes/ms-default-filters.php
33 33 add_filter( 'allowed_redirect_hosts', 'redirect_this_site' ); 34 34 35 35 // Administration 36 add_filter( 'term_id_filter', 'global_terms', 10, 2 );37 36 add_action( 'publish_post', 'update_posts_count' ); 38 37 add_action( 'delete_post', '_update_blog_date_on_post_delete' ); 39 38 add_action( 'transition_post_status', '_update_blog_date_on_post_publish', 10, 3 ); -
wp-includes/functions.php
3009 3009 } 3010 3010 3011 3011 /** 3012 * Whether global terms are enabled.3013 *3014 *3015 * @since 3.0.03016 * @package WordPress3017 *3018 * @return bool True if multisite and global terms enabled3019 */3020 function global_terms_enabled() {3021 if ( ! is_multisite() )3022 return false;3023 3024 static $global_terms = null;3025 if ( is_null( $global_terms ) ) {3026 $filter = apply_filters( 'global_terms_enabled', null );3027 if ( ! is_null( $filter ) )3028 $global_terms = (bool) $filter;3029 else3030 $global_terms = (bool) get_site_option( 'global_terms_enabled', false );3031 }3032 return $global_terms;3033 }3034 3035 /**3036 3012 * gmt_offset modification for smart timezone handling. 3037 3013 * 3038 3014 * Overrides the gmt_offset option if we have a timezone_string available. -
wp-includes/option.php
174 174 if ( empty($site_id) ) 175 175 $site_id = $wpdb->siteid; 176 176 177 $core_options = array('site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts' , 'global_terms_enabled');177 $core_options = array('site_name', 'siteurl', 'active_sitewide_plugins', '_site_transient_timeout_theme_roots', '_site_transient_theme_roots', 'site_admins', 'can_compress_scripts' ); 178 178 179 179 $core_options_in = "'" . implode("', '", $core_options) . "'"; 180 180 $options = $wpdb->get_results( $wpdb->prepare("SELECT meta_key, meta_value FROM $wpdb->sitemeta WHERE meta_key IN ($core_options_in) AND site_id = %d", $site_id) ); -
wp-includes/wp-db.php
239 239 * @var array 240 240 */ 241 241 var $ms_global_tables = array( 'blogs', 'signups', 'site', 'sitemeta', 242 ' sitecategories', 'registration_log', 'blog_versions' );242 'registration_log', 'blog_versions' ); 243 243 244 244 /** 245 245 * WordPress Comments table … … 390 390 var $site; 391 391 392 392 /** 393 * Multisite Sitewide Terms table394 *395 * @since 3.0.0396 * @access public397 * @var string398 */399 var $sitecategories;400 401 /**402 393 * Multisite Site Metadata table 403 394 * 404 395 * @since 3.0.0 -
wp-includes/ms-load.php
246 246 $msg .= __( 'Read the <a target="_blank" href="http://codex.wordpress.org/Debugging_a_WordPress_Network">bug report</a> page. Some of the guidelines there may help you figure out what went wrong.' ); 247 247 $msg .= ' ' . __( 'If you’re still stuck with this message, then check that your database contains the following tables:' ) . '</p><ul>'; 248 248 foreach ( $wpdb->tables('global') as $t => $table ) { 249 if ( 'sitecategories' == $t )250 continue;251 249 $msg .= '<li>' . $table . '</li>'; 252 250 } 253 251 $msg .= '</ul>'; -
wp-includes/ms-functions.php
1504 1504 } 1505 1505 1506 1506 /** 1507 * Maintains a canonical list of terms by syncing terms created for each blog with the global terms table.1508 *1509 * @since 3.0.01510 *1511 * @see term_id_filter1512 *1513 * @param int $term_id An ID for a term on the current blog.1514 * @return int An ID from the global terms table mapped from $term_id.1515 */1516 function global_terms( $term_id, $deprecated = '' ) {1517 global $wpdb;1518 static $global_terms_recurse = null;1519 1520 if ( !global_terms_enabled() )1521 return $term_id;1522 1523 // prevent a race condition1524 $recurse_start = false;1525 if ( $global_terms_recurse === null ) {1526 $recurse_start = true;1527 $global_terms_recurse = 1;1528 } elseif ( 10 < $global_terms_recurse++ ) {1529 return $term_id;1530 }1531 1532 $term_id = intval( $term_id );1533 $c = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->terms WHERE term_id = %d", $term_id ) );1534 1535 $global_id = $wpdb->get_var( $wpdb->prepare( "SELECT cat_ID FROM $wpdb->sitecategories WHERE category_nicename = %s", $c->slug ) );1536 if ( $global_id == null ) {1537 $used_global_id = $wpdb->get_var( $wpdb->prepare( "SELECT cat_ID FROM $wpdb->sitecategories WHERE cat_ID = %d", $c->term_id ) );1538 if ( null == $used_global_id ) {1539 $wpdb->insert( $wpdb->sitecategories, array( 'cat_ID' => $term_id, 'cat_name' => $c->name, 'category_nicename' => $c->slug ) );1540 $global_id = $wpdb->insert_id;1541 if ( empty( $global_id ) )1542 return $term_id;1543 } else {1544 $max_global_id = $wpdb->get_var( "SELECT MAX(cat_ID) FROM $wpdb->sitecategories" );1545 $max_local_id = $wpdb->get_var( "SELECT MAX(term_id) FROM $wpdb->terms" );1546 $new_global_id = max( $max_global_id, $max_local_id ) + mt_rand( 100, 400 );1547 $wpdb->insert( $wpdb->sitecategories, array( 'cat_ID' => $new_global_id, 'cat_name' => $c->name, 'category_nicename' => $c->slug ) );1548 $global_id = $wpdb->insert_id;1549 }1550 } elseif ( $global_id != $term_id ) {1551 $local_id = $wpdb->get_row( $wpdb->prepare( "SELECT term_id FROM $wpdb->terms WHERE term_id = %d", $global_id ) );1552 if ( null != $local_id )1553 $local_id = global_terms( $local_id );1554 if ( 10 < $global_terms_recurse )1555 $global_id = $term_id;1556 }1557 1558 if ( $global_id != $term_id ) {1559 if ( get_option( 'default_category' ) == $term_id )1560 update_option( 'default_category', $global_id );1561 1562 $wpdb->update( $wpdb->terms, array('term_id' => $global_id), array('term_id' => $term_id) );1563 $wpdb->update( $wpdb->term_taxonomy, array('term_id' => $global_id), array('term_id' => $term_id) );1564 $wpdb->update( $wpdb->term_taxonomy, array('parent' => $global_id), array('parent' => $term_id) );1565 1566 clean_term_cache($term_id);1567 }1568 if( $recurse_start )1569 $global_terms_recurse = null;1570 1571 return $global_id;1572 }1573 1574 /**1575 1507 * Ensure that the current site's domain is listed in the allowed redirect host list. 1576 1508 * 1577 1509 * @see wp_validate_redirect() -
wp-admin/includes/class-wp-terms-list-table.php
341 341 <span class="title"><?php _ex( 'Name', 'term name' ); ?></span> 342 342 <span class="input-text-wrap"><input type="text" name="name" class="ptitle" value="" /></span> 343 343 </label> 344 <?php if ( !global_terms_enabled() ) { ?>345 344 <label> 346 345 <span class="title"><?php _e( 'Slug' ); ?></span> 347 346 <span class="input-text-wrap"><input type="text" name="slug" class="ptitle" value="" /></span> 348 347 </label> 349 <?php } ?>350 348 </div></fieldset> 351 349 <?php 352 350 -
wp-admin/includes/upgrade.php
108 108 /* translators: Default category slug */ 109 109 $cat_slug = sanitize_title(_x('Uncategorized', 'Default category slug')); 110 110 111 if ( global_terms_enabled() ) { 112 $cat_id = $wpdb->get_var( $wpdb->prepare( "SELECT cat_ID FROM {$wpdb->sitecategories} WHERE category_nicename = %s", $cat_slug ) ); 113 if ( $cat_id == null ) { 114 $wpdb->insert( $wpdb->sitecategories, array('cat_ID' => 0, 'cat_name' => $cat_name, 'category_nicename' => $cat_slug, 'last_updated' => current_time('mysql', true)) ); 115 $cat_id = $wpdb->insert_id; 116 } 117 update_option('default_category', $cat_id); 118 } else { 119 $cat_id = 1; 120 } 111 $cat_id = 1; 121 112 122 113 $wpdb->insert( $wpdb->terms, array('term_id' => $cat_id, 'name' => $cat_name, 'slug' => $cat_slug, 'term_group' => 0) ); 123 114 $wpdb->insert( $wpdb->term_taxonomy, array('term_id' => $cat_id, 'taxonomy' => 'category', 'description' => '', 'parent' => 0, 'count' => 1)); … … 1234 1225 } 1235 1226 } 1236 1227 1237 // 3.01238 if ( $wp_current_db_version < 13576 )1239 update_site_option( 'global_terms_enabled', '1' );1240 1241 1228 // 3.3 1242 1229 if ( $wp_current_db_version < 19390 ) 1243 1230 update_site_option( 'initial_db_version', $wp_current_db_version ); … … 1263 1250 delete_site_option( 'allowed_themes' ); 1264 1251 } 1265 1252 } 1253 1254 // 3.5 1255 delete_site_option( 'global_terms_enabled' ); 1266 1256 } 1267 1257 1268 1258 // The functions we use to actually do stuff … … 1959 1949 } 1960 1950 1961 1951 } 1962 1963 /**1964 * Install global terms.1965 *1966 * @since 3.0.01967 *1968 */1969 if ( !function_exists( 'install_global_terms' ) ) :1970 function install_global_terms() {1971 global $wpdb, $charset_collate;1972 $ms_queries = "1973 CREATE TABLE $wpdb->sitecategories (1974 cat_ID bigint(20) NOT NULL auto_increment,1975 cat_name varchar(55) NOT NULL default '',1976 category_nicename varchar(200) NOT NULL default '',1977 last_updated timestamp NOT NULL,1978 PRIMARY KEY (cat_ID),1979 KEY category_nicename (category_nicename),1980 KEY last_updated (last_updated)1981 ) $charset_collate;1982 ";1983 // now create tables1984 dbDelta( $ms_queries );1985 }1986 endif; -
wp-admin/includes/schema.php
898 898 'add_new_users' => '0', 899 899 'upload_space_check_disabled' => '0', 900 900 'subdomain_install' => intval( $subdomain_install ), 901 'global_terms_enabled' => global_terms_enabled() ? '1' : '0',902 901 'initial_db_version' => get_option( 'initial_db_version' ), 903 902 'active_sitewide_plugins' => array(), 904 903 ); -
wp-admin/includes/ms.php
493 493 return strtr( $code, $lang_codes ); 494 494 } 495 495 496 function sync_category_tag_slugs( $term, $taxonomy ) {497 if ( global_terms_enabled() && ( $taxonomy == 'category' || $taxonomy == 'post_tag' ) ) {498 if ( is_object( $term ) ) {499 $term->slug = sanitize_title( $term->name );500 } else {501 $term['slug'] = sanitize_title( $term['name'] );502 }503 }504 return $term;505 }506 add_filter( 'get_term', 'sync_category_tag_slugs', 10, 2 );507 508 496 function _access_denied_splash() { 509 497 if ( ! is_user_logged_in() || is_network_admin() ) 510 498 return; -
wp-admin/edit-tags.php
212 212 $help = '<p>' . __( 'When adding a new tag on this screen, you’ll fill in the following fields:' ) . '</p>'; 213 213 214 214 $help .= '<ul>' . 215 '<li>' . __( '<strong>Name</strong> - The name is how it appears on your site.' ) . '</li>'; 215 '<li>' . __( '<strong>Name</strong> - The name is how it appears on your site.' ) . '</li>' . 216 '<li>' . __( '<strong>Slug</strong> - The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '</li>'; 216 217 217 if ( ! global_terms_enabled() )218 $help .= '<li>' . __( '<strong>Slug</strong> - The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ) . '</li>';219 220 218 if ( 'category' == $taxonomy ) 221 219 $help .= '<li>' . __( '<strong>Parent</strong> - Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown.' ) . '</li>'; 222 220 … … 361 359 <input name="tag-name" id="tag-name" type="text" value="" size="40" aria-required="true" /> 362 360 <p><?php _e('The name is how it appears on your site.'); ?></p> 363 361 </div> 364 <?php if ( ! global_terms_enabled() ) : ?>365 362 <div class="form-field"> 366 363 <label for="tag-slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label> 367 364 <input name="slug" id="tag-slug" type="text" value="" size="40" /> 368 365 <p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p> 369 366 </div> 370 <?php endif; // global_terms_enabled() ?>371 367 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 372 368 <div class="form-field"> 373 369 <label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label> -
wp-admin/edit-tag-form.php
41 41 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /> 42 42 <p class="description"><?php _e('The name is how it appears on your site.'); ?></p></td> 43 43 </tr> 44 <?php if ( !global_terms_enabled() ) { ?>45 44 <tr class="form-field"> 46 45 <th scope="row" valign="top"><label for="slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label></th> 47 46 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr(apply_filters('editable_slug', $tag->slug)); ?>" size="40" /> 48 47 <p class="description"><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td> 49 48 </tr> 50 <?php } ?>51 49 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 52 50 <tr class="form-field"> 53 51 <th scope="row" valign="top"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th> -
wp-admin/network/settings.php
85 85 update_site_option( 'banned_email_domains', '' ); 86 86 } 87 87 88 $options = array( 'registrationnotification', 'registration', 'add_new_users', 'menu_items', 'upload_space_check_disabled', 'blog_upload_space', 'upload_filetypes', 'site_name', 'first_post', 'first_page', 'first_comment', 'first_comment_url', 'first_comment_author', 'welcome_email', 'welcome_user_email', 'fileupload_maxk' , 'global_terms_enabled');88 $options = array( 'registrationnotification', 'registration', 'add_new_users', 'menu_items', 'upload_space_check_disabled', 'blog_upload_space', 'upload_filetypes', 'site_name', 'first_post', 'first_page', 'first_comment', 'first_comment_url', 'first_comment_author', 'welcome_email', 'welcome_user_email', 'fileupload_maxk' ); 89 89 $checked_options = array( 'menu_items' => array(), 'registrationnotification' => 'no', 'upload_space_check_disabled' => 1, 'add_new_users' => 0 ); 90 90 foreach ( $checked_options as $option_name => $option_unchecked_value ) { 91 91 if ( ! isset( $_POST[$option_name] ) ) -
wp-admin/maint/repair.php
32 32 33 33 $tables = $wpdb->tables(); 34 34 35 // Sitecategories may not exist if global terms are disabled.36 if ( is_multisite() && ! $wpdb->get_var( "SHOW TABLES LIKE '$wpdb->sitecategories'" ) )37 unset( $tables['sitecategories'] );38 39 35 $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); // Return tables with table prefixes. 40 36 41 37 // Loop over the tables, checking and repairing as needed.