Feature #56295
closedMake sys_categories manually sortable
0%
Description
Categories should be manually sortable using TYPO3's built-in sorting feature:
TCA:
$TCA['sys_category']['ctrl']['sortby'] = 'sorting';
SQL:
CREATE TABLE sys_category (
sorting int(10) unsigned DEFAULT '0' NOT NULL,
);
As the above doesn't seem to be enough to render the category tree in backend forms ordered by the sorting column, \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable might also be modified?
Without having this feature, the usage of sys_categories in own extensions might pollute the sys_categories table / the tca, as each developer could intend to overwrite the tca and ext_tables in the own extension.
Updated by Francois Suter about 10 years ago
- Status changed from New to Needs Feedback
- Assignee set to Francois Suter
This is the case in 6.2. It was changed from 6.1. Can you check again please?
Updated by Wouter Wolters almost 10 years ago
- Status changed from Needs Feedback to Closed
This has been changed in 6.2. Closed.
Updated by Christian Kuhn 7 months ago
- Related to Feature #51590: add sorting column to sys_category added