mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-26 18:30:38 +00:00
18 lines
347 B
PHP
18 lines
347 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.',
|
|
];
|
|
}
|