Last active
October 9, 2025 09:07
-
-
Save froemken/dfc13a5cc5261143b5fd21e6b5d038ba to your computer and use it in GitHub Desktop.
Show all list of all kind of used TYPO3 content elements and where they are used incl. a count
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT CType, list_type, GROUP_CONCAT(pid) AS Seiten, COUNT(*) AS Anzahl | |
FROM `tt_content` | |
WHERE `tt_content`.`hidden` = 0 | |
AND `tt_content`.`deleted` = 0 | |
GROUP BY CType, list_type | |
ORDER BY CType, list_type; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment