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.
15 lines
409 B
15 lines
409 B
<?php
|
|
|
|
use Kirby\Toolkit\I18n;
|
|
|
|
return function () {
|
|
return [
|
|
'icon' => 'account',
|
|
'label' => I18n::translate('view.account'),
|
|
'search' => 'users',
|
|
'dialogs' => require __DIR__ . '/account/dialogs.php',
|
|
'drawers' => require __DIR__ . '/account/drawers.php',
|
|
'dropdowns' => require __DIR__ . '/account/dropdowns.php',
|
|
'views' => require __DIR__ . '/account/views.php'
|
|
];
|
|
};
|
|
|