mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-20 17:02:16 +00:00
26 lines
525 B
PHP
26 lines
525 B
PHP
<?php
|
|
|
|
function accessDeniedError(): array
|
|
{
|
|
return [
|
|
'type' => 'error',
|
|
'message' => 'Access Denied',
|
|
];
|
|
}
|
|
|
|
function userActionNotAllowedError(): array
|
|
{
|
|
return [
|
|
'type' => 'error',
|
|
'message' => 'This user action is not allowed.',
|
|
];
|
|
}
|
|
|
|
function entryNotFoundError(): array
|
|
{
|
|
return [
|
|
'type' => 'error',
|
|
'message' => "The requested entry wasn't found.",
|
|
];
|
|
}
|