Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 875 Bytes

File metadata and controls

43 lines (28 loc) · 875 Bytes

Installation instructions

Requirements

  • eZ Platform 1.7+ or 2.0+

Installation steps

Use Composer

Run the following from your website root folder to install MarekSiteAccessAwareDateFormatBundle:

$ composer require marioblazek/ezplatform-siteaccess-aware-date-format-bundle

Activate the bundle

Activate required bundles in app/AppKernel.php file by adding them to the $bundles array in registerBundles method:

public function registerBundles()
{
    ...
    $bundles[] = new Marek\SiteAccessAwareDateFormatBundle\MarekSiteAccessAwareDateFormatBundle();

    return $bundles;
}

Clear the caches

Clear the eZ Publish caches with the following command:

$ php app/console cache:clear

For more detailed configuration, please check documentation.