Download the PHP package t3g/file-variants without Composer

On this page you can find all versions of the php package t3g/file-variants. 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 file-variants

File Variants

This extension serves as a working prototype for translatable files in TYPO3.

Features

Limits

Setup

  1. Install extension via Composer: composer require t3g/file-variants
  2. Activate the extension
  3. (optional) Use the extension configuration to create a dedicated file storage. If you use no dedicated storage, a dedicated folder will be used in default storage.

Data Examples

sys_file

uid sys_language_uid l10n_parent filename
1 0 0 en.pdf
2 1 1 de.pdf
3 2 1 en.pdf

(Notice that there is no Russian variant here.)

sys_file_metadata

uid sys_language_uid l10n_parent file title
1 0 0 1 English
2 1 1 2 Deutsch
3 2 1 3 Español

tt_content

uid sys_language_uid l10n_parent media title
1 0 0 1 English
2 1 1 1 Deutsch
3 2 1 1 Español
4 3 1 1 Русский

sys_file_reference

local is sys_file, foreign is tt_content

uid sys_language_uid l10n_parent uid_local uid_foreign
1 0 0 1 1
2 1 1 2 2
3 2 1 3 3
4 3 1 1 4

Schematically the following relations exist and are created/maintained automatically:

  1. tt_content:1 (English) -> sys_file_reference:1 -> sys_file:1 (English)
  2. tt_content:2 (German) -> sys_file_reference:2 -> sys_file:2 (German)
  3. tt_content:3 (Spanish) -> sys_file_reference:3 -> sys_file:3 (Spanish)
  4. tt_content:4 (Russian) -> sys_file_reference:4 -> sys_file:1 (English)

Behaviour

After Installation, the file metadata (sys_file_metadata) edit mask in File list module is slightly changed. Nothing changes for the default language. But creating / editing a file metadata translation allows for uploading a new file for this translation. The upload works the same way as the File list module and can be found next to the file info. This file will reside in the dedicated translation storage or folder. After uploading, the fileinfo element changes its content and displays the uploaded file.

A button then allows for resetting to the file used in default language. The file formerly used here is removed permanently! Also, the upload control is displayed again, so the a new file can be uploaded at any time.

During this process, all file references (sys_file_reference) are searched for a link to the default file, and updated with the translated one.

On each translation action to any record that contains a FAL field (like files or images), a check is performed to find out whether a file variant for the target language is available. If it is, the resulting file reference will link to that file variant instead of the default file.

This results in a consistent behaviour, that summarizes as:

Missing Features

  1. Upgrade wizard: if file metadata translations already exist, no file variants are provided or added.
  2. Workspaces support.

All versions of file-variants with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
psr/http-message Version ^1.0 || ^2.0
typo3/cms-backend Version ^11.5 || ^12.4
typo3/cms-core Version ^11.5 || ^12.4
typo3/cms-extbase Version ^11.5 || ^12.4
typo3/cms-fluid Version ^11.5 || ^12.4
typo3/cms-install Version ^11.5 || ^12.4
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 t3g/file-variants contains the following files

Loading the files please wait ....