-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
48 lines (47 loc) · 1.4 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
return [
'production' => false,
'baseUrl' => '',
'event_name' => 'PHPeste',
'event_ticket' => 'https://loja.phpeste.net',
'event_location' => 'Uninabuco - Recife/PE',
'event_period' => '19 e 20 de outubro',
'event_contact_email' => '[email protected]',
'submit_link_lecture' => 'https://speakerfight.com/events/call4papers-phpeste-2019-recifepe/',
'event_facebook' => 'https://www.facebook.com/events/328835701143838/',
'event_twitter' => 'https://twitter.com/phpestene',
'event_instagram' => '',
'event_vimeo' => '',
'categories' => [
'diamond' => [
'description' => 'Diamante',
],
'gold' => [
'description' => 'Ouro',
],
'support' => [
'description' => 'Apoio',
],
],
'collections' => [
'organizers' => [
'path' => 'organizers',
'sort' => 'first_name',
],
'sponsors' => [
'path' => 'sponsors',
'sort' => 'name',
],
'speakers' => [
'path' => 'speakers',
'sort' => 'first_name',
],
'schedules' => [
'path' => 'programming',
'sort' => 'speaker',
]
],
'selected' => function ($page, $section) {
return $page->getPath() === $section || str_contains($page->getPath(), $section) ? 'active' : '';
},
];