如何禁用elfinder删除和编辑选项?

时间:2017-10-30 11:54:25

标签: laravel tinymce elfinder

您好我在我的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' => 'Barryvdh\Elfinder\Elfinder::checkAccess',

    'roots' => null,

    'options' => array(),

    'root_options' => array(

    ),

);
?>

我无法禁用删除选项。

1 个答案:

答案 0 :(得分:0)

经过3个小时的研究后,我得到了解决方案。是的,这很简单,只需将此代码放入配置文件中即可。希望这个答案能在某一天帮助某人。

'root_options' => array(
    'defaults'   => array('read' => true, 'write' => true,'locked'=>true),
),