You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
523 B
20 lines
523 B
2 months ago
|
<?php
|
||
|
|
||
|
$drawers = require __DIR__ . '/../users/drawers.php';
|
||
|
|
||
|
return [
|
||
|
// account fields drawers
|
||
|
'account.fields' => [
|
||
|
'pattern' => '(account)/files/(:any)/fields/(:any)/(:all?)',
|
||
|
'load' => $drawers['user.fields']['load'],
|
||
|
'submit' => $drawers['user.fields']['submit']
|
||
|
],
|
||
|
|
||
|
// account file fields drawers
|
||
|
'account.file.fields' => [
|
||
|
'pattern' => '(account)/files/(:any)/fields/(:any)/(:all?)',
|
||
|
'load' => $drawers['user.file.fields']['load'],
|
||
|
'submit' => $drawers['user.file.fields']['submit']
|
||
|
],
|
||
|
];
|