├── .gitignore ├── Assets.php ├── AssetsCallBack.php ├── BaseController.php ├── ButtonWidget.php ├── Controller.php ├── ElFinder.php ├── InputFile.php ├── LICENSE.md ├── PathController.php ├── PluginInterface.php ├── README.md ├── assets ├── .DS_Store ├── elfinder.callback.js └── no.conflict.js ├── composer.json ├── elFinderApi.php ├── plugin └── Sluggable.php ├── views ├── connect.php └── manager.php └── volume ├── Base.php ├── Local.php └── UserPath.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/Assets.php -------------------------------------------------------------------------------- /AssetsCallBack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/AssetsCallBack.php -------------------------------------------------------------------------------- /BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/BaseController.php -------------------------------------------------------------------------------- /ButtonWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/ButtonWidget.php -------------------------------------------------------------------------------- /Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/Controller.php -------------------------------------------------------------------------------- /ElFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/ElFinder.php -------------------------------------------------------------------------------- /InputFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/InputFile.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PathController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/PathController.php -------------------------------------------------------------------------------- /PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/PluginInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/elfinder.callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/assets/elfinder.callback.js -------------------------------------------------------------------------------- /assets/no.conflict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/assets/no.conflict.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/composer.json -------------------------------------------------------------------------------- /elFinderApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/elFinderApi.php -------------------------------------------------------------------------------- /plugin/Sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/plugin/Sluggable.php -------------------------------------------------------------------------------- /views/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/views/connect.php -------------------------------------------------------------------------------- /views/manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/views/manager.php -------------------------------------------------------------------------------- /volume/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/volume/Base.php -------------------------------------------------------------------------------- /volume/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/volume/Local.php -------------------------------------------------------------------------------- /volume/UserPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MihailDev/yii2-elfinder/HEAD/volume/UserPath.php --------------------------------------------------------------------------------