agoat/contao-deferredimages

Contao 4 deferred images library

1.4.1 2019-01-08 06:59 UTC

README

Version License Downloads

Now compatible with Contao 4.6 !!

About

Contao normally generates (resizes) the images on a page during page generation. This can lead to long page load times or, in the worst case, script timeouts due to server restrictions.

This library shifts the image calculation from page generation to the time when the image is loaded in the browser. As a result, pages will have very short loading times and script timeouts are avoided, even with hundreds of images on a page.

Install

Contao manager

Search for the package and install it

agoat/contao-deferredimages

Managed edition

Add the package

# Using the composer
composer require agoat/contao-deferredimages

Registration and configuration is done by the manager-plugin automatically.

Standard edition

Add the package

# Using the composer
composer require agoat/contao-deferredimages

Register the bundle in the AppKernel

# app/AppKernel.php
class AppKernel
{
    // ...
    public function registerBundles()
    {
        $bundles = [
            // ...
            // after Contao\CoreBundle\ContaoCoreBundle
            new Agoat\DeferredImagesBundle\AgoatDeferredImagesBundle(),
        ];
    }
}