inspiredminds/contao-file-usage

Contao extension that allows you to search for references of files in the database assisted file manager.

Fund package maintenance!
fritzmg

Installs: 1 827

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 5

Forks: 1

Open Issues: 1

Type:contao-bundle

2.2.2 2023-10-02 08:25 UTC

This package is auto-updated.

Last update: 2024-03-02 09:19:04 UTC


README

Contao File Usage

This Contao extension allows you to find and display file references of your files managed by the file manager. For each file in the file manager there will be a new operation (search or link).

File manager

This operation will then show you any references of this file that this extension finds in the database, with links to the original data record, if available.

References

The search results are cached indefinitely. You can force to fetch new search results with the Refresh button. However, depending on the size of your database this might take a while and might not be able to finish within the HTTP request. In this case you will need to rely on the cronjob or command.

You can also use the "Unused files" global operation in order to find any database assisted files that aren't referenced anywhere (at least according to the search results).

Unused files

File Replacements

This extension also replaces Contao's fileTree widget with its own implementation, showing an additional button with which you can replace the file references found for this file with a new reference.

Gallery

Replace references

Cronjob

As previously mentioned the search results are cached. In order for the cache to always be up to date for at least 24 hours this extension implements a daily cronjob. However, the cronjob is only run on the command line interface, so make sure that you have set up Contao's cronjob accordingly.

Command

You can also warm up the file usage result cache from the command line, using the contao_file_usage:warmup command.

Custom Providers

Currently this extension can find any references created by the fileTree input field of any (database based) DCA and it can find any references from {{file::*}}, {{picture::*}} and {{figure::*}} insert tags in any text based fields in the database. If you want to expand this search to other locations you can implement your own file usage provider by implementing the FileUsageProviderInterface.

// src/FileUsage/FoobarProvider.php
use InspiredMinds\ContaoFileUsage\Provider\FileUsageProviderInterface;
use InspiredMinds\ContaoFileUsage\Result\DatabaseReferenceResult;
use InspiredMinds\ContaoFileUsage\Result\ResultsCollection;

class FoobarProvider implements FileUsageProviderInterface
{
    public function find(): ResultsCollection
    {
        $collection = new ResultsCollection();

        // Additional database search
        // …

        $collection->addResult(new DatabaseReferenceResult($table, $field, $id));

        return $collection;
    }
}

That is all you need to do, if you enabled autoconfigure for your service. Otherwise you will also need to tag the service with contao_file_usage.provider manually.

You might want or need to implement a new result container using the ResultInterface for your purposes (e.g. if your provider looks in the contents of files, rather than the database for example, which this extension currently does not do by default). Note that currently only DatabaseReferenceResult instances will be shown in the file manager.