30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace MintyPHP\Tests\Architecture;
|
|
|
|
final class ListTitlebarContractFiles
|
|
{
|
|
/**
|
|
* @return list<string>
|
|
*/
|
|
public static function titlebarTemplateFiles(): array
|
|
{
|
|
return [
|
|
'pages/admin/users/index(default).phtml',
|
|
'pages/admin/tenants/index(default).phtml',
|
|
'pages/admin/departments/index(default).phtml',
|
|
'pages/admin/roles/index(default).phtml',
|
|
'pages/admin/permissions/index(default).phtml',
|
|
'pages/admin/mail-log/index(default).phtml',
|
|
'pages/admin/scheduled-jobs/index(default).phtml',
|
|
'modules/audit/pages/audit/api-audit/index(default).phtml',
|
|
'modules/audit/pages/audit/import-audit/index(default).phtml',
|
|
'modules/audit/templates/settings-user-lifecycle-panel.phtml',
|
|
'modules/audit/pages/audit/system-audit/index(default).phtml',
|
|
'modules/addressbook/pages/address-book/index(default).phtml',
|
|
'pages/search/index(default).phtml',
|
|
'pages/help/hotkeys(default).phtml',
|
|
];
|
|
}
|
|
}
|