ms_subdomain_constants [ WordPress Function ]
| Defined at: |
|
Defines Multisite subdomain constants and handles warnings and notices.
VHOST is deprecated in favor of SUBDOMAIN_INSTALL, which is a bool.
On first call, the constants are checked and defined. On second call, we will have translations loaded and can trigger warnings easily.
Source
<?php
function ms_subdomain_constants() {
static $error = null;
static $error_warn = false;
if ( false === $error )
return;
if ( $error ) {
$vhost_deprecated = __( 'The constant <code>VHOST</code> <strong>is deprecated</strong>. Use the boolean constant <code>SUBDOMAIN_INSTALL</code> in wp-config.php to enable a subdomain configuration. Use is_subdomain_install() to check whether a subdomain configuration is enabled.' );
if ( $error_warn ) {
trigger_error( __( '<strong>Conflicting values for the constants VHOST and SUBDOMAIN_INSTALL.</strong> The value of SUBDOMAIN_INSTALL will be assumed to be your subdomain configuration setting.' ) . ' ' . $vhost_deprecated, E_USER_WARNING );
} else {
_deprecated_argument( 'define()', '3.0', $vhost_deprecated );
}
return;
}
if ( defined( 'SUBDOMAIN_INSTALL' ) && defined( 'VHOST' ) ) {
if ( SUBDOMAIN_INSTALL == ( 'yes' == VHOST ) ) {
$error = true;
} else {
$error = $error_warn = true;
}
} elseif ( defined( 'SUBDOMAIN_INSTALL' ) ) {
define( 'VHOST', SUBDOMAIN_INSTALL ? 'yes' : 'no' );
} elseif ( defined( 'VHOST' ) ) {
$error = true;
define( 'SUBDOMAIN_INSTALL', 'yes' == VHOST );
} else {
define( 'SUBDOMAIN_INSTALL', false );
define( 'VHOST', 'no' );
}
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- ms-default-constants.php - Detail view - PHP Cross Reference ...
Jun 1, 2011 ... Defines 4 functions. ms_upload_constants() ms_cookie_constants() ms_file_constants() ms_subdomain_constants(). Functions. Functions that ...
xref.yoast.com - <?php /** * Defines constants and global variables that can be ...
@since 3.0.0 */ function ms_subdomain_constants() { static $error = null; static $ error_warn = false; if ( false === $error ) return; if ( $error ) { $vhost_deprecated ...
core.svn.wordpress.org - <?php /** * Used to set up and fix common variables and include ...
'/sunrise.php' ); /** Check for and define SUBDOMAIN_INSTALL and the deprecated VHOST constant. */ ms_subdomain_constants(); if ( !isset( $ current_site ) ...
core.svn.wordpress.org - multisite - Sharding BLOGUPLOADDIR - WordPress - Stack Exchange
Oct 24, 2011 ... from ms-settings.php ms_subdomain_constants(); if ( !isset( $current_site ) || ! isset( $current_blog ) ) { // [trimmed, but you need the whole if ...
wordpress.stackexchange.com