matthewkp/ez-clean-up-versions

This tools clean ups all versions from all content in eZ Platform

Installs: 955

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Type:ezplatform-bundle

3.0.0 2019-08-17 09:12 UTC

This package is auto-updated.

Last update: 2024-04-17 19:33:45 UTC


README

This script will remove old versions of all contents for eZ Platform.

versions

  • Branch v1 & Tags 1.x : eZ Platform v1.x
  • Branch v2 & Tags 2.x : eZ Platform v2.x

Install Package

composer require matthewkp/ez-clean-up-versions

Register Bundle

// app/AppKernel.php

class AppKernel extends Kernel
{
    ...
    public function registerBundles()
    {
        ...
        $bundles = [
            ...
            new Matthewkp\EzCleanUpVersionsBundle\MatthewkpEzCleanUpVersionsBundle(),
            ...
        ];
        ...
    }
}

Arguments

  • Add -v to have the full information regarding content and version ids removals.
  • Add --keep to set the number of versions to keep
  • Add --locationId to set the root location id to start processing

Add in crontab

// /etc/cron.d/<your_cron_file> or /var/spool/cron/apache
0 0 * * * <user> cd <your_site_path> && php bin/console matthewkp:ez-clean-up-versions --env=<ENV> > 2>&1