mirror of
https://github.com/Codappix/typo3-php-datasets.git
synced 2024-11-10 23:56:11 +01:00
19 lines
335 B
PHP
19 lines
335 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'pages' => [
|
||
|
[
|
||
|
'uid' => 1,
|
||
|
'pid' => 0,
|
||
|
'is_siteroot' => 1,
|
||
|
'title' => 'Rootpage',
|
||
|
],
|
||
|
[
|
||
|
'uid' => 2,
|
||
|
'pid' => 0,
|
||
|
'title' => 'Another Page',
|
||
|
'description' => 'Some other text',
|
||
|
],
|
||
|
],
|
||
|
];
|