-
-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathConfigPreloader.php
More file actions
86 lines (72 loc) 路 1.74 KB
/
Copy pathConfigPreloader.php
File metadata and controls
86 lines (72 loc) 路 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
namespace SMW;
use SMW\Exception\ConfigPreloadFileNotReadableException;
/**
* @private
*
* Convenience class to allow users to inject some default settings from
* individual files directly from `enableSemantics`.
*
* @license GPL-2.0-or-later
* @since 3.2
*
* @author mwjames
*/
class ConfigPreloader {
private static array $config = [];
/**
* Loading files from the internal `config` directory that provides some
* predeployed default settings.
*
* ```
* enableSemantics( 'example.org' )->loadDefaultConfigFrom( 'media.php', 'xxx.php' );
* ```
*
* @since 3.2
*
* @param array ...$files
*
* @return self
*/
public function loadDefaultConfigFrom( ...$files ): ConfigPreloader {
$dir = $GLOBALS['smwgDir'] . '/data/config/';
foreach ( $files as $file ) {
// @phan-suppress-next-line PhanTypeConversionFromArray
$this->load( "$dir/$file" );
}
return $this;
}
/**
* Loading some custom config from "any" location and is provided for
* convenience to be used directly as in:
*
* ```
* enableSemantics( 'example.org' )->loadConfigFrom( __DIR__ . '/locationX/foo.php' );
* ```
*
* @since 3.2
*
* @param string ...$files
*
* @return self
*/
public function loadConfigFrom( ...$files ): ConfigPreloader {
foreach ( $files as $file ) {
$this->load( $file );
}
return $this;
}
private function load( $file ): void {
$file = str_replace( [ '\\', '//', '/' ], DIRECTORY_SEPARATOR, $file );
if ( !is_readable( $file ) ) {
throw new ConfigPreloadFileNotReadableException( $file );
}
$config = require_once $file;
if ( $config !== true ) {
self::$config[$file] = $config;
}
foreach ( self::$config[$file] as $key => $value ) {
$GLOBALS[$key] = $value;
}
}
}