Download the PHP package locaine/lcn-image-uploader-bundle without Composer

On this page you can find all versions of the php package locaine/lcn-image-uploader-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package lcn-image-uploader-bundle

LcnFileUploaderBundle

Easy ajax image file uploads for Symfony 2. MIT License. Built upon LcnFileUploaderBundle.

Introduction

This bundle provides enhanced image upload widgets based on LcnFileUploaderBundle. Both drag and drop and multiple file selection are fully supported in compatible browsers.

The uploader delivers files to a folder that you specify. If that folder already contains files, they are displayed side by side with new files, as existing files that can be removed.

The bundle can automatically scale images to sizes you specify. The provided synchronization methods make it possible to create forms in which attached files respect "save" and "cancel" operations.

If need to handle image uploads only, you should check out LcnImageUploaderBundle which extends LcnFileUploaderBundle.

Installation

Step 1: Install dependencies

LcnFileUploaderBundle

Install the required LcnFileUploaderBundle.

jQuery

Make sure that jQuery is included in your html document:

Underscore.js

Make sure that Underscore.js is included in your html document

Step 2: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 3: Enable the Bundle

Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:

Usage

Add/Edit/Remove uploads

Entity Code

If you need to upload files to not yet persisted entities (during creation) then you need to deal with temporary editIds which makes things a little bit more complicated.

In this example, we assume that you want to attach one or more uploaded image files to an existing entity (Demo).

This entity has to implement the ImageGallery interface.

Example:

Controller Code

Fetching $entity and validating that the user is allowed to edit that particular entity is up to you.

In Your Layout

You can skip this step if you are using LcnIncludeAssetsBundle.

Include these stylesheets and scripts in your html document:

Or you can use assetic in your twig template:

The exact position and order does not matter. However, for best performance you should include the link tags in your head section and the script tag right before the closing body tag.

In the Edit Template

====================

Now include the upload widget anywhere on your page:

Full example:

Retrieving existing Uploads

Retrieve Thumbnail URLs in Controller

If you are dealing with image uploads, you can pass a defined size name:

The image sizes are defined per gallery in lcn.image_uploader.galleries parameter:

Retrieve Thumbnail URLs in Twig Template

You can also pass a limit parameter (5 in this example):

If you only need the first thumbnail url, you can get it like this:

If you know the file name (e.g. stored as property on your entity) you can explicitly get the corresponding thumbnail:

Removing Files

When an entity that implements the ImageGallery interface gets deleted, the ImageGalleryEntityEventListener takes care of deleting all corresponding image uploads.

Removing Temporary Files

You should make sure that the temporary files do not eat up your storage.

The following Command Removes all temporary uploads older than 120 minutes


app/console lcn:file-uploader:cleanup --min-age-in-minutes=120
´´´

You might want to setup a cronjob that automatically executes that command in a given interval.

### More Options

As this bundle builds upon [LcnFileUploaderBundle](https://github.com/FaiblUG/LcnFileUploaderBundle) it is worth reading the bundles documentation for more advanced options. 

Limitations
===========

This bundle accesses the file system via the `glob()` function. It won't work out of the box with an S3 stream wrapper.

All versions of lcn-image-uploader-bundle with dependencies

PHP Build Version
Package Version
Requires locaine/lcn-file-uploader-bundle Version 2.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package locaine/lcn-image-uploader-bundle contains the following files

Loading the files please wait ....