-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
61 lines (54 loc) · 2.39 KB
/
index.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
<?php
use Kirby\Cms\Section;
Kirby::plugin('mullema/k3-panel-view-extended', [
'hooks' => [
/**
* Redirect changes to the default language
*/
'route:before' => function ($route, $path, $method) {
if ($method === 'PATCH' && $this->multilang() === true) {
// api slug can be changed in config.php
$api_slug = $this->option('api')['slug'] ?? 'api';
$context = null;
// Site
if (strpos($path, $api_slug . '/site') !== false) {
$context = $this->site();
}
// Page
else if (preg_match('/pages\/([^\/]*)/', $path, $matches) === 1) {
// api/pages/projects+usa+new-york/title => projects/usa/new-york
$page_path = str_replace("+", "/", $matches[1]);
$context = $this->site()->page($page_path); // is it a page
if (!$context) $context = $this->site()->draft($page_path); // or a draft?
}
// User
else if (preg_match('/users\/([^\/]*)/', $path, $matches) === 1) {
$context = $this->users()->find($matches[1]);
}
if ($context) {
$singleLanguage = $context->blueprint()->options()['singleLanguage'] ?? false;
$hideOptions = $context->blueprint()->options()['hideOptions'] ?? false;
if ($singleLanguage === true || $hideOptions === true) {
$_SERVER['HTTP_X_LANGUAGE'] = $this->languages()->default()->code();
}
}
}
},
/**
* Extend rasteiner/k3-pagesdisplay-section if it was loaded
*/
'system.loadPlugins:after' => function () {
if(isset(Section::$types['pagesdisplay'])) {
$pagesdisplaySection = require __DIR__ . '/src/pagesDisplaySection.php';
kirby()->extend([
'sections' => [
'pagesdisplay' => $pagesdisplaySection
],
], kirby()->plugin('mullema/k3-panel-view-extended'));
}
},
],
'sections' => [
'pages' => include(__DIR__ . '/src/pagesSection.php')
],
]);