Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public static function initExtension() { |
||
17 | |||
18 | if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) { |
||
19 | require_once __DIR__ . '/vendor/autoload.php'; |
||
20 | } |
||
21 | |||
22 | $GLOBALS[ 'wgexLingoBackend' ] = 'SG\LingoBackendAdapter'; |
||
23 | |||
24 | $GLOBALS[ 'wgExtensionFunctions' ][] = function () { |
||
25 | |||
26 | $hookRegistry = new HookRegistry(); |
||
27 | |||
28 | $hookRegistry->register(); |
||
29 | }; |
||
30 | } |
||
31 | |||
47 |