b13/tax

This package is abandoned and no longer maintained. The author suggests using the b13/tag package instead.

Manage tags in TYPO3 Core

Maintainers

Details

github.com/b13/tag

Source

Issues

Installs: 141

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 9

Forks: 0

Open Issues: 0

Language:JavaScript

Type:typo3-cms-extension

1.2.0 2023-05-30 14:47 UTC

This package is auto-updated.

Last update: 2023-05-30 14:48:16 UTC


README

Allow editing and adding lightweight tags for any kind of record to identify records easily.

Characteristics of tags:

  • Non-translateable - the same tag for all languages
  • Reuse tags by suggesting existing tags

Installation

Use composer req b13/tag or download the package from the official TYPO3 Extension Repository.

You need TYPO3 v9 or later for this extension to work.

Configuration

Add a database field for keywords/tags in your database table:

keywords int(11) unsigned DEFAULT '0' NOT NULL

For enabling tags in your TCA table of TYPO3, configure it like this in your database table (Configuration/TCA/tx_my_table.php).

'keywords' => [
    'label' => 'Keywords',
    'config' => (new \B13\Tag\TcaHelper())->buildFieldConfiguration('tx_my_table', 'keywords')
]

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addToAllTCAtypes('tx_my_table', 'keywords');

As all tags are stored in sys_tag and all its relations within sys_tag_mm, you're on your own whatever you want to do with tags in your system, however multiple functionality might be added later-on.

Known bugs

  • JavaScript does not care about the ordering of the tags in a list, which would be really cool. This stems from the fact that the JavaScript library (originally taken from Bootstrap-TagsInput)

Missing features

  • Permission handling: Make certain tags "read-only" for editors, so they can not remove specific tags from a record.
  • Allow to only search for tags on a per-pid basis
  • Allow to configure the "pid"
  • Allow numeric tag names
  • Limit max number of tags for a specific field
  • Use LLL labels

License

The extension is licensed under GPL v2+, same as the TYPO3 Core. For details see the LICENSE file in this repository.

Credits

This extension was created by Benni Mack in 2019 for b13 GmbH, Stuttgart.

For Bootstrap 4, we might use https://github.com/Nodws/bootstrap4-tagsinput

Find more TYPO3 extensions we have developed that help us deliver value in client projects. As part of the way we work, we focus on testing and best practices to ensure long-term performance, reliability, and results in all our code.