mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 09:49:37 +01:00
d1069acd38
git-svn-id: http://svn.automattic.com/wordpress/trunk@12936 1a063a9b-81f0-0310-95a4-ce76da25c4cd
73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Defines constants and global variables that can be overridden, generally in wp-config.php.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Multisite
|
|
*/
|
|
|
|
/**
|
|
* Defines Multisite default constants.
|
|
*
|
|
* @since 3.0.0
|
|
* @param $context
|
|
*/
|
|
function ms_default_constants( $context ) {
|
|
switch( $context ) {
|
|
case 'uploads' :
|
|
global $wpdb;
|
|
/** @since 3.0.0 */
|
|
if ( !defined( 'UPLOADBLOGSDIR' ) )
|
|
define( 'UPLOADBLOGSDIR', 'wp-content/blogs.dir' );
|
|
/** @since 3.0.0 */
|
|
if ( !defined( 'UPLOADS' ) )
|
|
define( 'UPLOADS', UPLOADBLOGSDIR . "/{$wpdb->blogid}/files/" );
|
|
/** @since 3.0.0 */
|
|
if ( !defined( 'BLOGUPLOADDIR' ) )
|
|
define( 'BLOGUPLOADDIR', WP_CONTENT_DIR . "/blogs.dir/{$wpdb->blogid}/files/" );
|
|
break;
|
|
case 'cookies' :
|
|
global $current_site;
|
|
/**
|
|
* @since 1.2.0
|
|
*/
|
|
if ( !defined( 'COOKIEPATH' ) )
|
|
define( 'COOKIEPATH', $current_site->path );
|
|
/**
|
|
* @since 1.5.0
|
|
*/
|
|
if ( !defined( 'SITECOOKIEPATH' ) )
|
|
define( 'SITECOOKIEPATH', $current_site->path );
|
|
/**
|
|
* @since 2.6.0
|
|
*/
|
|
if ( !defined( 'ADMIN_COOKIE_PATH' ) ) {
|
|
if( !is_subdomain_install() ) {
|
|
define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH );
|
|
} else {
|
|
define( 'ADMIN_COOKIE_PATH', SITECOOKIEPATH . 'wp-admin' );
|
|
}
|
|
}
|
|
/**
|
|
* @since 2.0.0
|
|
*/
|
|
if ( !defined('COOKIE_DOMAIN') )
|
|
define('COOKIE_DOMAIN', '.' . $current_site->cookie_domain);
|
|
break;
|
|
case 'ms-files' :
|
|
/**
|
|
* Optional support for X-Sendfile header
|
|
* @since 3.0.0
|
|
*/
|
|
if ( !defined( 'WPMU_SENDFILE' ) )
|
|
define( 'WPMU_SENDFILE', false );
|
|
/**
|
|
* Optional support for X-Accel-Redirect header
|
|
* @since 3.0.0
|
|
*/
|
|
if ( !defined( 'WPMU_ACCEL_REDIRECT' ) )
|
|
define( 'WPMU_ACCEL_REDIRECT', false );
|
|
break;
|
|
}
|
|
}
|
|
?>
|