Laravel 5.1集成了responsivefilemanager

时间:2015-07-08 15:17:47

标签: php laravel file-manager

我试图将responsivefilemanager.com与Laravel 5.1集成。我想要实现的是从laravel获取会话,并能够在文件管理器中使用它来检查用户是否已登录以及其他权限。

我尝试了https://gist.github.com/frzsombor/ddd0e11f93885060ef35

上找到的这种方法
require '/path/to/laravel/bootstrap/autoload.php';
$app = require_once '/path/to/laravel/bootstrap/app.php';

$app->make('Illuminate\Contracts\Http\Kernel')
->handle(Illuminate\Http\Request::capture());
$isAuthorized = Auth::check();

但我收到以下错误Cannot redeclare endsWith() (previously declared in ../vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php:655。发生这种情况是因为filemanager在其中一个文件中有一个函数endsWith()。

您有任何建议吗,或者您是否已将此文件管理器与laravel 5 / 5.1集成,您是如何做到的?

0 个答案:

没有答案