forked from pescu25/flarum-ext-spanish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.php
77 lines (62 loc) · 2.73 KB
/
bootstrap.php
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
<?php
/*
* This file is part of FlarumES/Spanish.
* -----------------------------------------------------------------------
* Copyright © 2015-2017 Toby Zerner and Flarum
* Copyright © 2015-2017 Johann Rodríguez and Flarum en Español
* -----------------------------------------------------------------------
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Flarum\Event\ConfigureClientView;
use Illuminate\Contracts\Events\Dispatcher;
use Flarum\Settings\SettingsRepositoryInterface;
use Flarum\Event\ConfigureLocales;
return function (Dispatcher $events) {
$events->subscribe('Spanish');
};
class Spanish {
protected $settings;
public function __construct(SettingsRepositoryInterface $settings) {
$this->settings = $settings;
}
public function subscribe(Dispatcher $events) {
$events->listen(ConfigureClientView::class, [$this, 'addSettingsPage']);
$events->listen(ConfigureLocales::class, [$this, 'addLocale']);
}
public function addSettingsPage(ConfigureClientView $event) {
if ($event->isAdmin()) {
$event->addAssets([
__DIR__ . '/js/admin/dist/extension.js'
]);
$event->addBootstrapper('flarumes/spanish/main');
}
}
public function addLocale(ConfigureLocales $event) {
$name = $title = basename(__DIR__);
if (file_exists($manifest = __DIR__.'/composer.json')) {
$json = json_decode(file_get_contents($manifest), true);
if (empty($json)) {
throw new RuntimeException("Error parsing composer.json in $name: ".json_last_error_msg());
}
$locale = array_get($json, 'extra.flarum-locale.code');
$title = array_get($json, 'extra.flarum-locale.title', $title);
}
if (! isset($locale)) {
throw new RuntimeException("Language pack $name must define \"extra.flarum-locale.code\" in composer.json.");
}
$event->locales->addLocale($locale, $title);
$mode = $this->settings->get('flarumes-spanish.mode') ? $this->settings->get('flarumes-spanish.mode') : 'formal';
if (! is_dir($localeDir = __DIR__.'/locale/' . $mode)) {
throw new RuntimeException("Language pack $name must have a \"locale\" subdirectory.");
}
if (file_exists($file = $localeDir.'/config.js')) {
$event->locales->addJsFile($locale, $file);
}
foreach (new DirectoryIterator($localeDir) as $file) {
if ($file->isFile() && in_array($file->getExtension(), ['yml', 'yaml'])) {
$event->locales->addTranslations($locale, $file->getPathname());
}
}
}
}