mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-14 17:36:11 +01:00
21 lines
378 B
PHP
21 lines
378 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'pages' => [
|
|
[
|
|
'pid' => '0',
|
|
'uid' => '1',
|
|
'title' => 'Root page',
|
|
'slug' => '1',
|
|
'is_siteroot' => '1',
|
|
],
|
|
[
|
|
'pid' => '1',
|
|
'uid' => '2',
|
|
'title' => 'Storage',
|
|
'doktype' => '254',
|
|
],
|
|
],
|
|
];
|