2004-05-23 15:00:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
2004-09-26 08:06:04 +00:00
|
|
|
/**
|
2006-01-07 13:09:30 +00:00
|
|
|
* The include paths change after this file is included from commandLine.inc,
|
2004-09-26 08:06:04 +00:00
|
|
|
* meaning that require_once() fails to detect that it is including the same
|
|
|
|
|
* file again. We use DIY C-style protection as a workaround.
|
|
|
|
|
*/
|
2008-08-06 03:55:49 +00:00
|
|
|
|
|
|
|
|
// Hide this pattern from Doxygen, which spazzes out at it
|
|
|
|
|
/// @cond
|
2008-08-26 15:10:12 +00:00
|
|
|
if( !defined( 'SITE_CONFIGURATION' ) ){
|
|
|
|
|
define( 'SITE_CONFIGURATION', 1 );
|
2008-08-06 03:55:49 +00:00
|
|
|
/// @endcond
|
2004-09-26 08:06:04 +00:00
|
|
|
|
2007-04-24 06:53:31 +00:00
|
|
|
/**
|
|
|
|
|
* This is a class used to hold configuration settings, particularly for multi-wiki sites.
|
|
|
|
|
*/
|
2004-05-23 15:00:46 +00:00
|
|
|
class SiteConfiguration {
|
2008-08-26 15:10:12 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Array of suffixes, for self::siteFromDB()
|
|
|
|
|
*/
|
|
|
|
|
public $suffixes = array();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Array of wikis, should be the same as $wgLocalDatabases
|
|
|
|
|
*/
|
|
|
|
|
public $wikis = array();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The whole array of settings
|
|
|
|
|
*/
|
|
|
|
|
public $settings = array();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Array of domains that are local and can be handled by the same server
|
|
|
|
|
*/
|
|
|
|
|
public $localVHosts = array();
|
2009-06-02 09:49:31 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Optional callback to load full configuration data.
|
|
|
|
|
*/
|
|
|
|
|
public $fullLoadCallback = null;
|
|
|
|
|
|
|
|
|
|
/** Whether or not all data has been loaded */
|
|
|
|
|
public $fullLoadDone = false;
|
2008-08-26 15:10:12 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A callback function that returns an array with the following keys (all
|
|
|
|
|
* optional):
|
|
|
|
|
* - suffix: site's suffix
|
|
|
|
|
* - lang: site's lang
|
|
|
|
|
* - tags: array of wiki tags
|
|
|
|
|
* - params: array of parameters to be replaced
|
|
|
|
|
* The function will receive the SiteConfiguration instance in the first
|
|
|
|
|
* argument and the wiki in the second one.
|
|
|
|
|
* if suffix and lang are passed they will be used for the return value of
|
|
|
|
|
* self::siteFromDB() and self::$suffixes will be ignored
|
|
|
|
|
*/
|
|
|
|
|
public $siteParamsCallback = null;
|
2005-07-05 21:22:25 +00:00
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/**
|
|
|
|
|
* Retrieves a configuration setting for a given wiki.
|
|
|
|
|
* @param $settingName String ID of the setting name to retrieve
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
* @return Mixed the value of the setting requested.
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function get( $settingName, $wiki, $suffix = null, $params = array(), $wikiTags = array() ) {
|
|
|
|
|
$params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
|
|
|
|
|
return $this->getSetting( $settingName, $wiki, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Really retrieves a configuration setting for a given wiki.
|
|
|
|
|
*
|
|
|
|
|
* @param $settingName String ID of the setting name to retrieve.
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $params Array: array of parameters.
|
|
|
|
|
* @return Mixed the value of the setting requested.
|
|
|
|
|
*/
|
|
|
|
|
protected function getSetting( $settingName, $wiki, /*array*/ $params ){
|
|
|
|
|
$retval = null;
|
|
|
|
|
if( array_key_exists( $settingName, $this->settings ) ) {
|
2008-02-06 15:56:25 +00:00
|
|
|
$thisSetting =& $this->settings[$settingName];
|
|
|
|
|
do {
|
2008-08-18 09:26:48 +00:00
|
|
|
// Do individual wiki settings
|
2008-08-26 15:10:12 +00:00
|
|
|
if( array_key_exists( $wiki, $thisSetting ) ) {
|
2008-02-06 15:56:25 +00:00
|
|
|
$retval = $thisSetting[$wiki];
|
|
|
|
|
break;
|
2008-08-26 15:10:12 +00:00
|
|
|
} elseif( array_key_exists( "+$wiki", $thisSetting ) && is_array( $thisSetting["+$wiki"] ) ) {
|
2008-08-18 09:26:48 +00:00
|
|
|
$retval = $thisSetting["+$wiki"];
|
2008-02-06 15:56:25 +00:00
|
|
|
}
|
2008-08-26 15:10:12 +00:00
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
// Do tag settings
|
2008-08-26 15:10:12 +00:00
|
|
|
foreach( $params['tags'] as $tag ) {
|
|
|
|
|
if( array_key_exists( $tag, $thisSetting ) ) {
|
|
|
|
|
if ( isset( $retval ) && is_array( $retval ) && is_array( $thisSetting[$tag] ) ) {
|
|
|
|
|
$retval = self::arrayMerge( $retval, $thisSetting[$tag] );
|
2008-08-18 09:26:48 +00:00
|
|
|
} else {
|
|
|
|
|
$retval = $thisSetting[$tag];
|
|
|
|
|
}
|
2008-02-06 15:56:25 +00:00
|
|
|
break 2;
|
2008-08-26 15:10:12 +00:00
|
|
|
} elseif( array_key_exists( "+$tag", $thisSetting ) && is_array($thisSetting["+$tag"]) ) {
|
|
|
|
|
if( !isset( $retval ) )
|
2008-08-18 09:26:48 +00:00
|
|
|
$retval = array();
|
2008-08-26 15:10:12 +00:00
|
|
|
$retval = self::arrayMerge( $retval, $thisSetting["+$tag"] );
|
2008-02-06 15:56:25 +00:00
|
|
|
}
|
|
|
|
|
}
|
2008-08-18 09:26:48 +00:00
|
|
|
// Do suffix settings
|
2008-08-26 15:10:12 +00:00
|
|
|
$suffix = $params['suffix'];
|
|
|
|
|
if( !is_null( $suffix ) ) {
|
|
|
|
|
if( array_key_exists( $suffix, $thisSetting ) ) {
|
|
|
|
|
if ( isset($retval) && is_array($retval) && is_array($thisSetting[$suffix]) ) {
|
|
|
|
|
$retval = self::arrayMerge( $retval, $thisSetting[$suffix] );
|
|
|
|
|
} else {
|
|
|
|
|
$retval = $thisSetting[$suffix];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
} elseif( array_key_exists( "+$suffix", $thisSetting ) && is_array($thisSetting["+$suffix"]) ) {
|
|
|
|
|
if (!isset($retval))
|
|
|
|
|
$retval = array();
|
|
|
|
|
$retval = self::arrayMerge( $retval, $thisSetting["+$suffix"] );
|
2008-08-18 09:26:48 +00:00
|
|
|
}
|
2008-02-06 15:56:25 +00:00
|
|
|
}
|
2008-08-26 15:10:12 +00:00
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
// Fall back to default.
|
2008-08-26 15:10:12 +00:00
|
|
|
if( array_key_exists( 'default', $thisSetting ) ) {
|
|
|
|
|
if( is_array( $retval ) && is_array( $thisSetting['default'] ) ) {
|
|
|
|
|
$retval = self::arrayMerge( $retval, $thisSetting['default'] );
|
2008-08-18 09:26:48 +00:00
|
|
|
} else {
|
|
|
|
|
$retval = $thisSetting['default'];
|
|
|
|
|
}
|
2008-02-06 15:56:25 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} while ( false );
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
2005-08-14 07:22:36 +00:00
|
|
|
|
2008-08-26 15:10:12 +00:00
|
|
|
if( !is_null( $retval ) && count( $params['params'] ) ) {
|
|
|
|
|
foreach ( $params['params'] as $key => $value ) {
|
2008-01-19 06:06:49 +00:00
|
|
|
$retval = $this->doReplace( '$' . $key, $value, $retval );
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
|
|
|
|
}
|
2004-05-24 03:59:38 +00:00
|
|
|
return $retval;
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-08-26 15:10:12 +00:00
|
|
|
/**
|
|
|
|
|
* Type-safe string replace; won't do replacements on non-strings
|
|
|
|
|
* private?
|
|
|
|
|
*/
|
2008-01-19 06:06:49 +00:00
|
|
|
function doReplace( $from, $to, $in ) {
|
|
|
|
|
if( is_string( $in ) ) {
|
|
|
|
|
return str_replace( $from, $to, $in );
|
|
|
|
|
} elseif( is_array( $in ) ) {
|
|
|
|
|
foreach( $in as $key => $val ) {
|
2008-01-19 06:26:39 +00:00
|
|
|
$in[$key] = $this->doReplace( $from, $to, $val );
|
2008-01-19 06:06:49 +00:00
|
|
|
}
|
|
|
|
|
return $in;
|
|
|
|
|
} else {
|
|
|
|
|
return $in;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-23 15:00:46 +00:00
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/**
|
|
|
|
|
* Gets all settings for a wiki
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
* @return Array Array of settings requested.
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function getAll( $wiki, $suffix = null, $params = array(), $wikiTags = array() ) {
|
|
|
|
|
$params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
|
2006-01-04 22:48:35 +00:00
|
|
|
$localSettings = array();
|
2008-08-26 15:10:12 +00:00
|
|
|
foreach( $this->settings as $varname => $stuff ) {
|
2008-08-20 14:12:52 +00:00
|
|
|
$append = false;
|
|
|
|
|
$var = $varname;
|
|
|
|
|
if ( substr( $varname, 0, 1 ) == '+' ) {
|
|
|
|
|
$append = true;
|
|
|
|
|
$var = substr( $varname, 1 );
|
|
|
|
|
}
|
2008-08-26 15:10:12 +00:00
|
|
|
|
|
|
|
|
$value = $this->getSetting( $varname, $wiki, $params );
|
|
|
|
|
if ( $append && is_array( $value ) && is_array( $GLOBALS[$var] ) )
|
|
|
|
|
$value = self::arrayMerge( $value, $GLOBALS[$var] );
|
2006-01-07 13:09:30 +00:00
|
|
|
if ( !is_null( $value ) ) {
|
2008-08-20 12:56:59 +00:00
|
|
|
$localSettings[$var] = $value;
|
2006-01-04 22:48:35 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $localSettings;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/**
|
|
|
|
|
* Retrieves a configuration setting for a given wiki, forced to a boolean.
|
|
|
|
|
* @param $settingName String ID of the setting name to retrieve
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
* @return bool The value of the setting requested.
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function getBool( $setting, $wiki, $suffix = null, $wikiTags = array() ) {
|
2008-02-06 16:53:21 +00:00
|
|
|
return (bool)($this->get( $setting, $wiki, $suffix, array(), $wikiTags ) );
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
|
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/** Retrieves an array of local databases */
|
2004-05-23 15:00:46 +00:00
|
|
|
function &getLocalDatabases() {
|
2006-01-04 22:48:35 +00:00
|
|
|
return $this->wikis;
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
2005-07-05 21:22:25 +00:00
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/** A no-op */
|
2004-05-23 15:00:46 +00:00
|
|
|
function initialise() {
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/**
|
|
|
|
|
* Retrieves the value of a given setting, and places it in a variable passed by reference.
|
|
|
|
|
* @param $settingName String ID of the setting name to retrieve
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $var Reference The variable to insert the value into.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function extractVar( $setting, $wiki, $suffix, &$var, $params = array(), $wikiTags = array() ) {
|
2008-02-06 15:56:25 +00:00
|
|
|
$value = $this->get( $setting, $wiki, $suffix, $params, $wikiTags );
|
2004-05-23 15:00:46 +00:00
|
|
|
if ( !is_null( $value ) ) {
|
|
|
|
|
$var = $value;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-07-05 21:22:25 +00:00
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/**
|
|
|
|
|
* Retrieves the value of a given setting, and places it in its corresponding global variable.
|
|
|
|
|
* @param $settingName String ID of the setting name to retrieve
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function extractGlobal( $setting, $wiki, $suffix = null, $params = array(), $wikiTags = array() ) {
|
|
|
|
|
$params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
|
|
|
|
|
$this->extractGlobalSetting( $setting, $wiki, $params );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function extractGlobalSetting( $setting, $wiki, $params ) {
|
|
|
|
|
$value = $this->getSetting( $setting, $wiki, $params );
|
2004-05-23 15:00:46 +00:00
|
|
|
if ( !is_null( $value ) ) {
|
2008-08-20 14:12:52 +00:00
|
|
|
if (substr($setting,0,1) == '+' && is_array($value)) {
|
|
|
|
|
$setting = substr($setting,1);
|
|
|
|
|
if ( is_array($GLOBALS[$setting]) ) {
|
2008-08-26 15:10:12 +00:00
|
|
|
$GLOBALS[$setting] = self::arrayMerge( $GLOBALS[$setting], $value );
|
2008-08-20 14:12:52 +00:00
|
|
|
} else {
|
|
|
|
|
$GLOBALS[$setting] = $value;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$GLOBALS[$setting] = $value;
|
|
|
|
|
}
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-18 09:26:48 +00:00
|
|
|
/**
|
|
|
|
|
* Retrieves the values of all settings, and places them in their corresponding global variables.
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function extractAllGlobals( $wiki, $suffix = null, $params = array(), $wikiTags = array() ) {
|
|
|
|
|
$params = $this->mergeParams( $wiki, $suffix, $params, $wikiTags );
|
2004-05-24 03:59:38 +00:00
|
|
|
foreach ( $this->settings as $varName => $setting ) {
|
2008-08-26 15:10:12 +00:00
|
|
|
$this->extractGlobalSetting( $varName, $wiki, $params );
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
|
|
|
|
}
|
2004-08-14 06:03:10 +00:00
|
|
|
|
2008-08-26 15:10:12 +00:00
|
|
|
/**
|
|
|
|
|
* Return specific settings for $wiki
|
|
|
|
|
* See the documentation of self::$siteParamsCallback for more in-depth
|
|
|
|
|
* documentation about this function
|
|
|
|
|
*
|
|
|
|
|
* @param $wiki String
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
protected function getWikiParams( $wiki ){
|
|
|
|
|
static $default = array(
|
|
|
|
|
'suffix' => null,
|
|
|
|
|
'lang' => null,
|
|
|
|
|
'tags' => array(),
|
|
|
|
|
'params' => array(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if( !is_callable( $this->siteParamsCallback ) )
|
|
|
|
|
return $default;
|
|
|
|
|
|
|
|
|
|
$ret = call_user_func_array( $this->siteParamsCallback, array( $this, $wiki ) );
|
|
|
|
|
# Validate the returned value
|
|
|
|
|
if( !is_array( $ret ) )
|
|
|
|
|
return $default;
|
|
|
|
|
|
|
|
|
|
foreach( $default as $name => $def ){
|
|
|
|
|
if( !isset( $ret[$name] ) || ( is_array( $default[$name] ) && !is_array( $ret[$name] ) ) )
|
|
|
|
|
$ret[$name] = $default[$name];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Merge params beetween the ones passed to the function and the ones given
|
|
|
|
|
* by self::$siteParamsCallback for backward compatibility
|
|
|
|
|
* Values returned by self::getWikiParams() have the priority.
|
|
|
|
|
*
|
|
|
|
|
* @param $wiki String Wiki ID of the wiki in question.
|
|
|
|
|
* @param $suffix String The suffix of the wiki in question.
|
|
|
|
|
* @param $params Array List of parameters. $.'key' is replaced by $value in
|
|
|
|
|
* all returned data.
|
|
|
|
|
* @param $wikiTags Array The tags assigned to the wiki.
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
protected function mergeParams( $wiki, $suffix, /*array*/ $params, /*array*/ $wikiTags ){
|
|
|
|
|
$ret = $this->getWikiParams( $wiki );
|
|
|
|
|
|
|
|
|
|
if( is_null( $ret['suffix'] ) )
|
|
|
|
|
$ret['suffix'] = $suffix;
|
|
|
|
|
|
|
|
|
|
$ret['tags'] = array_unique( array_merge( $ret['tags'], $wikiTags ) );
|
|
|
|
|
|
|
|
|
|
$ret['params'] += $params;
|
|
|
|
|
|
|
|
|
|
// Automatically fill that ones if needed
|
|
|
|
|
if( !isset( $ret['params']['lang'] ) && !is_null( $ret['lang'] ) )
|
|
|
|
|
$ret['params']['lang'] = $ret['lang'];
|
|
|
|
|
if( !isset( $ret['params']['site'] ) && !is_null( $ret['suffix'] ) )
|
|
|
|
|
$ret['params']['site'] = $ret['suffix'];
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Work out the site and language name from a database name
|
|
|
|
|
* @param $db
|
|
|
|
|
*/
|
2008-08-26 15:10:12 +00:00
|
|
|
public function siteFromDB( $db ) {
|
|
|
|
|
// Allow override
|
|
|
|
|
$def = $this->getWikiParams( $db );
|
|
|
|
|
if( !is_null( $def['suffix'] ) && !is_null( $def['lang'] ) )
|
|
|
|
|
return array( $def['suffix'], $def['lang'] );
|
|
|
|
|
|
|
|
|
|
$site = null;
|
|
|
|
|
$lang = null;
|
2004-08-14 06:03:10 +00:00
|
|
|
foreach ( $this->suffixes as $suffix ) {
|
2008-03-30 09:48:15 +00:00
|
|
|
if ( $suffix === '' ) {
|
|
|
|
|
$site = '';
|
|
|
|
|
$lang = $db;
|
|
|
|
|
break;
|
|
|
|
|
} elseif ( substr( $db, -strlen( $suffix ) ) == $suffix ) {
|
2004-08-14 06:03:10 +00:00
|
|
|
$site = $suffix == 'wiki' ? 'wikipedia' : $suffix;
|
|
|
|
|
$lang = substr( $db, 0, strlen( $db ) - strlen( $suffix ) );
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-07-11 00:47:00 +00:00
|
|
|
$lang = str_replace( '_', '-', $lang );
|
2004-08-14 06:03:10 +00:00
|
|
|
return array( $site, $lang );
|
|
|
|
|
}
|
2005-06-26 06:34:13 +00:00
|
|
|
|
2008-08-26 15:10:12 +00:00
|
|
|
/**
|
|
|
|
|
* Returns true if the given vhost is handled locally.
|
|
|
|
|
* @param $vhost String
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function isLocalVHost( $vhost ) {
|
2005-06-26 06:34:13 +00:00
|
|
|
return in_array( $vhost, $this->localVHosts );
|
|
|
|
|
}
|
2008-08-26 15:10:12 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Merge multiple arrays together.
|
|
|
|
|
* On encountering duplicate keys, merge the two, but ONLY if they're arrays.
|
|
|
|
|
* PHP's array_merge_recursive() merges ANY duplicate values into arrays,
|
|
|
|
|
* which is not fun
|
|
|
|
|
*/
|
|
|
|
|
static function arrayMerge( $array1/* ... */ ) {
|
|
|
|
|
$out = $array1;
|
|
|
|
|
for( $i=1; $i < func_num_args(); $i++ ) {
|
|
|
|
|
foreach( func_get_arg( $i ) as $key => $value ) {
|
|
|
|
|
if ( isset($out[$key]) && is_array($out[$key]) && is_array($value) ) {
|
|
|
|
|
$out[$key] = self::arrayMerge( $out[$key], $value );
|
|
|
|
|
} elseif ( !isset($out[$key]) || !$out[$key] && !is_numeric($key) ) {
|
|
|
|
|
// Values that evaluate to true given precedence, for the primary purpose of merging permissions arrays.
|
|
|
|
|
$out[$key] = $value;
|
|
|
|
|
} elseif ( is_numeric( $key ) ) {
|
|
|
|
|
$out[] = $value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
|
}
|
2009-06-02 09:49:31 +00:00
|
|
|
|
|
|
|
|
public function loadFullData() {
|
|
|
|
|
if ($this->fullLoadCallback && !$this->fullLoadDone) {
|
|
|
|
|
call_user_func( $this->fullLoadCallback );
|
|
|
|
|
$this->fullLoadDone = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-23 15:00:46 +00:00
|
|
|
}
|
2009-06-02 09:49:31 +00:00
|
|
|
} // End of multiple inclusion guard
|