- project model : refactor getSteps() method - create dialog store - create DialogWrapper component that open the dialog corresponding to the URL query param
13 lines
No EOL
244 B
PHP
13 lines
No EOL
244 B
PHP
<?php
|
|
|
|
$specificData = [
|
|
// "exampleField" => $page->exampleField(),
|
|
// "exampleHardData" => 'Example hard value'
|
|
];
|
|
|
|
$pageData = array_merge($genericData, $specificData);
|
|
|
|
echo json_encode([
|
|
"page" => $pageData,
|
|
"user" => $userData
|
|
]); |