MediaWiki  1.29.2
ServiceWiring.php
Go to the documentation of this file.
1 <?php
44 
45 return [
46  'DBLoadBalancerFactory' => function( MediaWikiServices $services ) {
47  $mainConfig = $services->getMainConfig();
48 
50  $mainConfig->get( 'LBFactoryConf' ),
51  $mainConfig,
52  $services->getConfiguredReadOnlyMode()
53  );
54  $class = MWLBFactory::getLBFactoryClass( $lbConf );
55 
56  return new $class( $lbConf );
57  },
58 
59  'DBLoadBalancer' => function( MediaWikiServices $services ) {
60  // just return the default LB from the DBLoadBalancerFactory service
61  return $services->getDBLoadBalancerFactory()->getMainLB();
62  },
63 
64  'SiteStore' => function( MediaWikiServices $services ) {
65  $rawSiteStore = new DBSiteStore( $services->getDBLoadBalancer() );
66 
67  // TODO: replace wfGetCache with a CacheFactory service.
68  // TODO: replace wfIsHHVM with a capabilities service.
70 
71  return new CachingSiteStore( $rawSiteStore, $cache );
72  },
73 
74  'SiteLookup' => function( MediaWikiServices $services ) {
75  $cacheFile = $services->getMainConfig()->get( 'SitesCacheFile' );
76 
77  if ( $cacheFile !== false ) {
78  return new FileBasedSiteLookup( $cacheFile );
79  } else {
80  // Use the default SiteStore as the SiteLookup implementation for now
81  return $services->getSiteStore();
82  }
83  },
84 
85  'ConfigFactory' => function( MediaWikiServices $services ) {
86  // Use the bootstrap config to initialize the ConfigFactory.
87  $registry = $services->getBootstrapConfig()->get( 'ConfigRegistry' );
88  $factory = new ConfigFactory();
89 
90  foreach ( $registry as $name => $callback ) {
91  $factory->register( $name, $callback );
92  }
93  return $factory;
94  },
95 
96  'MainConfig' => function( MediaWikiServices $services ) {
97  // Use the 'main' config from the ConfigFactory service.
98  return $services->getConfigFactory()->makeConfig( 'main' );
99  },
100 
101  'InterwikiLookup' => function( MediaWikiServices $services ) {
102  global $wgContLang; // TODO: manage $wgContLang as a service
103  $config = $services->getMainConfig();
104  return new ClassicInterwikiLookup(
105  $wgContLang,
106  $services->getMainWANObjectCache(),
107  $config->get( 'InterwikiExpiry' ),
108  $config->get( 'InterwikiCache' ),
109  $config->get( 'InterwikiScopes' ),
110  $config->get( 'InterwikiFallbackSite' )
111  );
112  },
113 
114  'StatsdDataFactory' => function( MediaWikiServices $services ) {
115  return new BufferingStatsdDataFactory(
116  rtrim( $services->getMainConfig()->get( 'StatsdMetricPrefix' ), '.' )
117  );
118  },
119 
120  'EventRelayerGroup' => function( MediaWikiServices $services ) {
121  return new EventRelayerGroup( $services->getMainConfig()->get( 'EventRelayerConfig' ) );
122  },
123 
124  'SearchEngineFactory' => function( MediaWikiServices $services ) {
125  return new SearchEngineFactory( $services->getSearchEngineConfig() );
126  },
127 
128  'SearchEngineConfig' => function( MediaWikiServices $services ) {
130  return new SearchEngineConfig( $services->getMainConfig(), $wgContLang );
131  },
132 
133  'SkinFactory' => function( MediaWikiServices $services ) {
134  $factory = new SkinFactory();
135 
136  $names = $services->getMainConfig()->get( 'ValidSkinNames' );
137 
138  foreach ( $names as $name => $skin ) {
139  $factory->register( $name, $skin, function () use ( $name, $skin ) {
140  $class = "Skin$skin";
141  return new $class( $name );
142  } );
143  }
144  // Register a hidden "fallback" skin
145  $factory->register( 'fallback', 'Fallback', function () {
146  return new SkinFallback;
147  } );
148  // Register a hidden skin for api output
149  $factory->register( 'apioutput', 'ApiOutput', function () {
150  return new SkinApi;
151  } );
152 
153  return $factory;
154  },
155 
156  'WatchedItemStore' => function( MediaWikiServices $services ) {
157  $store = new WatchedItemStore(
158  $services->getDBLoadBalancer(),
159  new HashBagOStuff( [ 'maxKeys' => 100 ] ),
160  $services->getReadOnlyMode()
161  );
162  $store->setStatsdDataFactory( $services->getStatsdDataFactory() );
163  return $store;
164  },
165 
166  'WatchedItemQueryService' => function( MediaWikiServices $services ) {
167  return new WatchedItemQueryService( $services->getDBLoadBalancer() );
168  },
169 
170  'CryptRand' => function( MediaWikiServices $services ) {
171  $secretKey = $services->getMainConfig()->get( 'SecretKey' );
172  return new CryptRand(
173  [
174  // To try vary the system information of the state a bit more
175  // by including the system's hostname into the state
176  'wfHostname',
177  // It's mostly worthless but throw the wiki's id into the data
178  // for a little more variance
179  'wfWikiID',
180  // If we have a secret key set then throw it into the state as well
181  function() use ( $secretKey ) {
182  return $secretKey ?: '';
183  }
184  ],
185  // The config file is likely the most often edited file we know should
186  // be around so include its stat info into the state.
187  // The constant with its location will almost always be defined, as
188  // WebStart.php defines MW_CONFIG_FILE to $IP/LocalSettings.php unless
189  // being configured with MW_CONFIG_CALLBACK (e.g. the installer).
190  defined( 'MW_CONFIG_FILE' ) ? [ MW_CONFIG_FILE ] : [],
191  LoggerFactory::getInstance( 'CryptRand' )
192  );
193  },
194 
195  'CryptHKDF' => function( MediaWikiServices $services ) {
196  $config = $services->getMainConfig();
197 
198  $secret = $config->get( 'HKDFSecret' ) ?: $config->get( 'SecretKey' );
199  if ( !$secret ) {
200  throw new RuntimeException( "Cannot use MWCryptHKDF without a secret." );
201  }
202 
203  // In HKDF, the context can be known to the attacker, but this will
204  // keep simultaneous runs from producing the same output.
205  $context = [ microtime(), getmypid(), gethostname() ];
206 
207  // Setup salt cache. Use APC, or fallback to the main cache if it isn't setup
208  $cache = $services->getLocalServerObjectCache();
209  if ( $cache instanceof EmptyBagOStuff ) {
211  }
212 
213  return new CryptHKDF( $secret, $config->get( 'HKDFAlgorithm' ),
214  $cache, $context, $services->getCryptRand()
215  );
216  },
217 
218  'MediaHandlerFactory' => function( MediaWikiServices $services ) {
219  return new MediaHandlerFactory(
220  $services->getMainConfig()->get( 'MediaHandlers' )
221  );
222  },
223 
224  'MimeAnalyzer' => function( MediaWikiServices $services ) {
225  $logger = LoggerFactory::getInstance( 'Mime' );
226  $mainConfig = $services->getMainConfig();
227  $params = [
228  'typeFile' => $mainConfig->get( 'MimeTypeFile' ),
229  'infoFile' => $mainConfig->get( 'MimeInfoFile' ),
230  'xmlTypes' => $mainConfig->get( 'XMLMimeTypes' ),
231  'guessCallback' =>
232  function ( $mimeAnalyzer, &$head, &$tail, $file, &$mime ) use ( $logger ) {
233  // Also test DjVu
234  $deja = new DjVuImage( $file );
235  if ( $deja->isValid() ) {
236  $logger->info( __METHOD__ . ": detected $file as image/vnd.djvu\n" );
237  $mime = 'image/vnd.djvu';
238 
239  return;
240  }
241  // Some strings by reference for performance - assuming well-behaved hooks
242  Hooks::run(
243  'MimeMagicGuessFromContent',
244  [ $mimeAnalyzer, &$head, &$tail, $file, &$mime ]
245  );
246  },
247  'extCallback' => function ( $mimeAnalyzer, $ext, &$mime ) {
248  // Media handling extensions can improve the MIME detected
249  Hooks::run( 'MimeMagicImproveFromExtension', [ $mimeAnalyzer, $ext, &$mime ] );
250  },
251  'initCallback' => function ( $mimeAnalyzer ) {
252  // Allow media handling extensions adding MIME-types and MIME-info
253  Hooks::run( 'MimeMagicInit', [ $mimeAnalyzer ] );
254  },
255  'logger' => $logger
256  ];
257 
258  if ( $params['infoFile'] === 'includes/mime.info' ) {
259  $params['infoFile'] = __DIR__ . "/libs/mime/mime.info";
260  }
261 
262  if ( $params['typeFile'] === 'includes/mime.types' ) {
263  $params['typeFile'] = __DIR__ . "/libs/mime/mime.types";
264  }
265 
266  $detectorCmd = $mainConfig->get( 'MimeDetectorCommand' );
267  if ( $detectorCmd ) {
268  $params['detectCallback'] = function ( $file ) use ( $detectorCmd ) {
269  return wfShellExec( "$detectorCmd " . wfEscapeShellArg( $file ) );
270  };
271  }
272 
273  // XXX: MimeMagic::singleton currently requires this service to return an instance of MimeMagic
274  return new MimeMagic( $params );
275  },
276 
277  'ProxyLookup' => function( MediaWikiServices $services ) {
278  $mainConfig = $services->getMainConfig();
279  return new ProxyLookup(
280  $mainConfig->get( 'SquidServers' ),
281  $mainConfig->get( 'SquidServersNoPurge' )
282  );
283  },
284 
285  'Parser' => function( MediaWikiServices $services ) {
286  $conf = $services->getMainConfig()->get( 'ParserConf' );
287  return ObjectFactory::constructClassInstance( $conf['class'], [ $conf ] );
288  },
289 
290  'LinkCache' => function( MediaWikiServices $services ) {
291  return new LinkCache(
292  $services->getTitleFormatter(),
293  $services->getMainWANObjectCache()
294  );
295  },
296 
297  'LinkRendererFactory' => function( MediaWikiServices $services ) {
298  return new LinkRendererFactory(
299  $services->getTitleFormatter(),
300  $services->getLinkCache()
301  );
302  },
303 
304  'LinkRenderer' => function( MediaWikiServices $services ) {
305  global $wgUser;
306 
307  if ( defined( 'MW_NO_SESSION' ) ) {
308  return $services->getLinkRendererFactory()->create();
309  } else {
310  return $services->getLinkRendererFactory()->createForUser( $wgUser );
311  }
312  },
313 
314  'GenderCache' => function( MediaWikiServices $services ) {
315  return new GenderCache();
316  },
317 
318  '_MediaWikiTitleCodec' => function( MediaWikiServices $services ) {
320 
321  return new MediaWikiTitleCodec(
322  $wgContLang,
323  $services->getGenderCache(),
324  $services->getMainConfig()->get( 'LocalInterwikis' )
325  );
326  },
327 
328  'TitleFormatter' => function( MediaWikiServices $services ) {
329  return $services->getService( '_MediaWikiTitleCodec' );
330  },
331 
332  'TitleParser' => function( MediaWikiServices $services ) {
333  return $services->getService( '_MediaWikiTitleCodec' );
334  },
335 
336  'MainObjectStash' => function( MediaWikiServices $services ) {
337  $mainConfig = $services->getMainConfig();
338 
339  $id = $mainConfig->get( 'MainStash' );
340  if ( !isset( $mainConfig->get( 'ObjectCaches' )[$id] ) ) {
341  throw new UnexpectedValueException(
342  "Cache type \"$id\" is not present in \$wgObjectCaches." );
343  }
344 
345  return \ObjectCache::newFromParams( $mainConfig->get( 'ObjectCaches' )[$id] );
346  },
347 
348  'MainWANObjectCache' => function( MediaWikiServices $services ) {
349  $mainConfig = $services->getMainConfig();
350 
351  $id = $mainConfig->get( 'MainWANCache' );
352  if ( !isset( $mainConfig->get( 'WANObjectCaches' )[$id] ) ) {
353  throw new UnexpectedValueException(
354  "WAN cache type \"$id\" is not present in \$wgWANObjectCaches." );
355  }
356 
357  $params = $mainConfig->get( 'WANObjectCaches' )[$id];
358  $objectCacheId = $params['cacheId'];
359  if ( !isset( $mainConfig->get( 'ObjectCaches' )[$objectCacheId] ) ) {
360  throw new UnexpectedValueException(
361  "Cache type \"$objectCacheId\" is not present in \$wgObjectCaches." );
362  }
363  $params['store'] = $mainConfig->get( 'ObjectCaches' )[$objectCacheId];
364 
365  return \ObjectCache::newWANCacheFromParams( $params );
366  },
367 
368  'LocalServerObjectCache' => function( MediaWikiServices $services ) {
369  $mainConfig = $services->getMainConfig();
370 
371  if ( function_exists( 'apc_fetch' ) ) {
372  $id = 'apc';
373  } elseif ( function_exists( 'apcu_fetch' ) ) {
374  $id = 'apcu';
375  } elseif ( function_exists( 'xcache_get' ) && wfIniGetBool( 'xcache.var_size' ) ) {
376  $id = 'xcache';
377  } elseif ( function_exists( 'wincache_ucache_get' ) ) {
378  $id = 'wincache';
379  } else {
380  $id = CACHE_NONE;
381  }
382 
383  if ( !isset( $mainConfig->get( 'ObjectCaches' )[$id] ) ) {
384  throw new UnexpectedValueException(
385  "Cache type \"$id\" is not present in \$wgObjectCaches." );
386  }
387 
388  return \ObjectCache::newFromParams( $mainConfig->get( 'ObjectCaches' )[$id] );
389  },
390 
391  'VirtualRESTServiceClient' => function( MediaWikiServices $services ) {
392  $config = $services->getMainConfig()->get( 'VirtualRestConfig' );
393 
394  $vrsClient = new VirtualRESTServiceClient( new MultiHttpClient( [] ) );
395  foreach ( $config['paths'] as $prefix => $serviceConfig ) {
396  $class = $serviceConfig['class'];
397  // Merge in the global defaults
398  $constructArg = isset( $serviceConfig['options'] )
399  ? $serviceConfig['options']
400  : [];
401  $constructArg += $config['global'];
402  // Make the VRS service available at the mount point
403  $vrsClient->mount( $prefix, [ 'class' => $class, 'config' => $constructArg ] );
404  }
405 
406  return $vrsClient;
407  },
408 
409  'ConfiguredReadOnlyMode' => function( MediaWikiServices $services ) {
410  return new ConfiguredReadOnlyMode( $services->getMainConfig() );
411  },
412 
413  'ReadOnlyMode' => function( MediaWikiServices $services ) {
414  return new ReadOnlyMode(
415  $services->getConfiguredReadOnlyMode(),
416  $services->getDBLoadBalancer()
417  );
418  },
419 
421  // NOTE: When adding a service here, don't forget to add a getter function
422  // in the MediaWikiServices class. The convenience getter should just call
423  // $this->getService( 'FooBarService' ).
425 
426 ];
EventRelayerGroup
Factory class for spawning EventRelayer objects using configuration.
Definition: EventRelayerGroup.php:10
LinkCache
Cache for article titles (prefixed DB keys) and ids linked from one source.
Definition: LinkCache.php:34
$wgUser
$wgUser
Definition: Setup.php:781
$context
error also a ContextSource you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2612
MultiHttpClient
Class to handle concurrent HTTP requests.
Definition: MultiHttpClient.php:45
MediaWikiTitleCodec
A codec for MediaWiki page titles.
Definition: MediaWikiTitleCodec.php:39
FileBasedSiteLookup
Provides a file-based cache of a SiteStore.
Definition: FileBasedSiteLookup.php:33
ObjectCache\getLocalClusterInstance
static getLocalClusterInstance()
Get the main cluster-local cache object.
Definition: ObjectCache.php:357
SkinApi
SkinTemplate class for API output.
Definition: SkinApi.php:33
HashBagOStuff
Simple store for keeping values in an associative array for the current process.
Definition: HashBagOStuff.php:31
MediaWiki\Interwiki\ClassicInterwikiLookup
InterwikiLookup implementing the "classic" interwiki storage (hardcoded up to MW 1....
Definition: ClassicInterwikiLookup.php:45
EmptyBagOStuff
A BagOStuff object with no objects in it.
Definition: EmptyBagOStuff.php:29
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:76
CACHE_NONE
const CACHE_NONE
Definition: Defines.php:100
ReadOnlyMode
A service class for fetching the wiki's current read-only mode.
Definition: ReadOnlyMode.php:11
CachingSiteStore
Definition: CachingSiteStore.php:31
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
CACHE_ACCEL
const CACHE_ACCEL
Definition: Defines.php:103
GenderCache
Caches user genders when needed to use correct namespace aliases.
Definition: GenderCache.php:31
ConfiguredReadOnlyMode
A read-only mode service which does not depend on LoadBalancer.
Definition: ReadOnlyMode.php:76
$params
$params
Definition: styleTest.css.php:40
MediaWiki\Linker\LinkRendererFactory
Factory to create LinkRender objects.
Definition: LinkRendererFactory.php:32
SearchEngineFactory
Factory class for SearchEngine.
Definition: SearchEngineFactory.php:9
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:304
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MediaHandlerFactory
Class to construct MediaHandler objects.
Definition: MediaHandlerFactory.php:29
CryptHKDF
Definition: CryptHKDF.php:33
WatchedItemQueryService
Definition: WatchedItemQueryService.php:18
ProxyLookup
Definition: ProxyLookup.php:27
VirtualRESTServiceClient
Virtual HTTP service client loosely styled after a Virtual File System.
Definition: VirtualRESTServiceClient.php:46
SkinFallback
SkinTemplate class for the fallback skin.
Definition: SkinFallback.php:14
BufferingStatsdDataFactory
A factory for application metric data.
Definition: BufferingStatsdDataFactory.php:35
MWLBFactory\getLBFactoryClass
static getLBFactoryClass(array $config)
Returns the LBFactory class to use and the load balancer configuration.
Definition: MWLBFactory.php:170
MWLBFactory\applyDefaultConfig
static applyDefaultConfig(array $lbConf, Config $mainConfig, ConfiguredReadOnlyMode $readOnlyMode)
Definition: MWLBFactory.php:39
DBSiteStore
Definition: DBSiteStore.php:33
MimeMagic
Definition: MimeMagic.php:27
wfGetCache
wfGetCache( $cacheType)
Get a specific cache object.
Definition: GlobalFunctions.php:3398
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
$services
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
Definition: hooks.txt:2179
$mime
if( $ext=='php'|| $ext=='php5') $mime
Definition: router.php:65
SkinFactory
Factory class to create Skin objects.
Definition: SkinFactory.php:31
wfEscapeShellArg
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
Definition: GlobalFunctions.php:2195
CACHE_ANYTHING
const CACHE_ANYTHING
Definition: Defines.php:99
ObjectFactory\constructClassInstance
static constructClassInstance( $clazz, $args)
Construct an instance of the given class using the given arguments.
Definition: ObjectFactory.php:130
wfIniGetBool
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
Definition: GlobalFunctions.php:2176
WatchedItemStore
Storage layer class for WatchedItems.
Definition: WatchedItemStore.php:23
$cache
$cache
Definition: mcc.php:33
$ext
$ext
Definition: NoLocalSettings.php:25
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$skin
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned $skin
Definition: hooks.txt:1956
ConfigFactory
Factory class to create Config objects.
Definition: ConfigFactory.php:31
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
WatchedItemStore\setStatsdDataFactory
setStatsdDataFactory(StatsdDataFactoryInterface $stats)
Sets a StatsdDataFactory instance on the object.
Definition: WatchedItemStore.php:84
SearchEngineConfig
Configuration handling class for SearchEngine.
Definition: SearchEngineConfig.php:9
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
wfIsHHVM
wfIsHHVM()
Check if we are running under HHVM.
Definition: GlobalFunctions.php:2046
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
CryptRand
Definition: CryptRand.php:28
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
wfShellExec
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
Definition: GlobalFunctions.php:2297