designtopack/public/site/models/project.php
2024-09-26 17:21:24 +02:00

15 lines
No EOL
300 B
PHP

<?php
class ProjectPage extends Page {
public function getSteps() {
$steps = array_map(function($child) {
return [
'text' => $child['content']['title'],
'value' => $child['content']['stepname']
];
}, $this->children()->toArray());
return $steps;
}
}