teufels/tt3-facts

Provide Facts & Reasons Content-Element

Maintainers

Package info

bitbucket.org/teufels/tt3-facts

Homepage

Issues

Type:typo3-cms-extension

pkg:composer/teufels/tt3-facts

Transparency log

Statistics

Installs: 1 539

Dependents: 0

Suggesters: 0

2.0.2 2026-07-03 08:56 UTC

This package is auto-updated.

Last update: 2026-07-03 09:04:09 UTC


README

VENDOR PACKAGE KEY version

[ ṯeufels ] Facts/Reasons

Provide Facts & Reasons Content-Element based on CountUp.js

This version supports TYPO3

TYPO3Version

Composer support

composer req teufels/tt3-facts

CountUp.js Documents

Requirements

CountUp.js: >=2.8.0 (UMD)

How to use

  • Install with composer
  • Import Static Template (before sitepackage)
  • make own Layout by override Partials (and if needed Theme) in sitepackage

Update & Migration from hive_facts

Note: Migration from hive_facts is only supported up to version 1.1.x (TYPO3 v12/v13). Version 2.0.0+ requires TYPO3 v14 – at this point the migration must already have been completed.

For migration on TYPO3 v12/v13 use version 1.1.x:

  1. in composer.json replace beewilly/hive_facts with "teufels/tt3-facts":"^1.0"
  2. Composer update
  3. Include TypoScript set [teufels] Facts/Reasons
  4. Analyze Database Structure -> Add tables & fields (do not remove old hive_facts yet)
  5. Perform Upgrade Wizards [teufels] Facts/Reasons
  6. Analyze Database Structure -> Remove tables & unused fields (remove old hive_facts now)
  7. class & id changed -> adjust styling in sitepackage (e.g. hive-facts-item => facts-item)
  8. check & adjust be user group access rights

Changelog

2.0.x

  • 2.0.2 fix: MySQL 8.x compatibility – element_startvalue and element_value changed from tinytext to decimal(15,4) (breaking: DB schema change, run Analyze Database Structure after update), TCA default 0 added for element_startvalue
  • 2.0.1 add class frame-type-tt3_facts to Template
  • 2.0.0 add support for TYPO3 v14 (breaking: requires TYPO3 v14, drops v12/v13 support)
    • remove Classes/Updates/ (UpgradeWizards for hive_facts migration) – no longer needed as hive_facts only ran on TYPO3 v12; migration must have been completed before upgrading to v14
    • migrate icon registration from ext_localconf.php to Configuration/Icons.php (required in TYPO3 v14 – instantiating IconRegistry in ext_localconf.php throws an exception)

      1.1.x

  • 1.1.10 TCA migration tt_content override: migrate tx_tt3facts_duration from eval=int to type=number, remove deprecated showRemovedLocalizationRecords (not evaluated in TYPO3 v13)
  • 1.1.9 TCA migration for TYPO3 v13: type=language, type=datetime, type=number, type=file, remove cruser_id & showRemovedLocalizationRecords, associative items keys
  • 1.1.8 add missing 'l10n_mode' => 'prefixLangTitle', field to TCA for Translation via deepltranslate_core
  • 1.1.7 set default value '0' for element_startvalue field to avoid issues with NULL values
  • 1.1.6 use title if no backend_title is set
  • 1.1.5 add headers to Plugin (TCA) and reorganize TCA
  • 1.1.4 fix: replace private execute() calls with executeStatement() in DataUpdater for DBAL 3 compatibility
  • 1.1.3 add support for Site Sets
  • 1.1.2 add support for TYPO3 v13
    • custom preview renderer only used for TYPO3 v12, TYPO3 v13 uses default renderer
    • add Previews for TYPO3 v13 and TYPO3 v12 support
    • update CountUp.js (UMD) to 2.8.0
    • replace missing doctrine/dbal 'getSchemaManager()'

      1.0.x

  • 1.0.5 refactored CountUp initialization logic into a reusable function
  • 1.0.4 fix renderContentElementPreviewFromFluidTemplate changed parameters_
  • 1.0.3 add Icon to ext_emconf
  • 1.0.2 change c- to c & improve BE Preview
  • 1.0.1 changed deprecated allowTableOnStandardPages() to ignorePageTypeRestriction (https://docs.typo3.org/m/typo3/reference-tca/12.4/en-us/Ctrl/Properties/Security.html#ctrl-security-ignorepagetyperestriction)
  • 1.0.0 intial from hive_facts