adsign/filemanager-bundle

Adsign FileManager is a simple Multilingual File Manager Bundle for Symfony

v1.0.4 2022-03-16 08:53 UTC

This package is auto-updated.

Last update: 2024-04-16 13:54:15 UTC


README

Tests Code Quality Code Coverage Symfony 2.x, 3.x and 4.x

Adsign FileManager is a simple Multilingual File Manager Bundle for Symfony

Symfony Filemanager created with FileManagerBundle

Features

  • Upload, delete (multiple), rename, download and sort files
  • Create, rename and delete folders
  • Manage Public and Private folders
  • Multilingual (English, French)
  • Fully responsive design (bootstrap)
  • Multilple view modes (list, thumbnail, with tree or not)
  • Easy integration with Tinymce
  • Preview images (even with a Private folder)
  • Create multilple configurations
  • Advanced configuration (ex : ACL, ...) with your own service
  • File restriction based on patterns
  • File Upload widget used : blueimp/jQuery-File-Upload
    • Multiple uploads support
    • Drag & Drop support
    • Min/Max file size restriction
    • Thumbnails generation
    • Client-side image resizing/crop
    • Exhaustive options
  • Compatible with FOSCKEditorBundle

Documentation

The Book

Tutorials

Installation

Step 1: Download the Bundle

$ composer require adsign/filemanager-bundle

Step 2: Enable the Bundle

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
            new Sg\DatatablesBundle\SgDatatablesBundle(),
            new Tetranz\Select2EntityBundle\TetranzSelect2EntityBundle(),
            new Adsign\FileManagerBundle\AdsignFileManagerBundle(),
            new Adsign\FileManagerBundle\AdsignFileManagerBundle(),
        );
    }

    // ...
}

Step 3: Load the Routes

# app/config/routing.yml
fara_data_file_manager:
    resource: "@AdsignFileManagerBundle/Controller"
    type:     annotation
    prefix:   /manager

Step 4: Prepare the Web Assets

# Symfony 3
php bin/console assets:install --symlink

Step 5: Enable the translator service

# app/config/config.yml
framework:
    translator: { fallbacks: [ "en" ] }

Creating Your First File Manager

Create a folder uploads in web.

Add following configuration (symfony4) :

# app/config/config.yml
fara_data_file_manager:
    web_dir: public                 # set your public Directory (not required, default value: web)
    conf:
        default:
            dir: "../public/uploads"

Browse the /manager/?conf=default URL and you'll get access to your file manager