-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php
34 lines (29 loc) · 1.03 KB
/
config.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
<?php
return [
'baseUrl' => 'https://docs.delaford.com',
'production' => false,
'siteName' => 'Delaford',
'siteDescription' => 'Online 2D JavaScript RPG',
// Algolia DocSearch credentials
'docsearchApiKey' => '1551474b2e0ba4200e01741864fd572e',
'docsearchIndexName' => 'delaford',
// navigation menu
'navigation' => require_once('navigation.php'),
// helpers
'isActiveParent' => function ($page, $menuItem) {
if (is_object($menuItem) && $menuItem->children) {
return $menuItem->children->contains(function ($child) use ($page) {
return trimPath($page->getPath()) == trimPath($child);
});
}
},
'active' => function ($page, $path) {
$pages = collect(array_wrap($page));
return $pages->contains(function ($page) use ($path) {
return str_contains($page->getPath(), $path);
});
},
'url' => function ($page, $path) {
return starts_with($path, 'http') ? $path : '/' . trimPath($path);
},
];