15 lines
No EOL
300 B
PHP
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;
|
|
}
|
|
} |