designtopack/public/site/config/hooks/create-steps.php
2024-09-18 13:05:55 +02:00

37 lines
No EOL
716 B
PHP

<?php
return function($newPage, $oldPage) {
if ($newPage->template() != "project") return;
$newPage->createChild([
'slug' => 'client-brief',
'template' => 'client-brief',
'content' => [
'title' => 'Brief client'
]
]);
$newPage->createChild([
'slug' => 'proposal',
'template' => 'proposal',
'content' => [
'title' => 'Offre commerciale'
]
]);
$newPage->createChild([
'slug' => 'extended-brief',
'template' => 'extended-brief',
'content' => [
'title' => 'Brief enrichi'
]
]);
$newPage->createChild([
'slug' => 'sample',
'template' => 'sample',
'content' => [
'title' => 'Échantillon virtuel'
]
]);
};