你好,我在我的laravel应用程序中使用elfinder。我无法从 elfinder 禁用删除选项。任何帮助都非常感谢。
这是我的配置文件:
<?php
return array(
'dir' => ['assets/uploads/news_upload'],
'disks' => [
],
'route' => [
'prefix' => 'elfinder',
'middleware' => array('web', 'auth'), //Set to null to disable middleware filter
],
'access' => 'BarryvdhElfinderElfinder::checkAccess',
'roots' => null,
'options' => array(),
'root_options' => array(
),
);
?>
我无法禁用删除选项。
经过
3 小时的研究,我得到了解决方案。是的,它是如此简单,只需将此代码放在您的配置文件中即可。希望这个答案有一天能帮助某人。
'root_options' => array(
'defaults' => array('read' => true, 'write' => true,'locked'=>true),
),