Project

General

Profile

Actions

Bug #51921

closed

Only 1 category field per table possible

Added by Sebastian Michaelsen over 10 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2013-09-11
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.1
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

Since the CategoryRegistry was refactored between 6.0 and 6.1 it's not possible anymore to have more than one category field per table.

CategoryRegistry->add() does:

        $this->registry[$extensionKey][$tableName] = array (
            'fieldName' => $fieldName,
            'options' => $options,
        );

So every call overwrites the data of previous calls.

Example:

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable('myext', 'tx_myext_domain_model_event', 'categories1', array(
    'fieldConfiguration' => array(
        'foreign_table_where' => ' AND sys_category.pid = ' . 1 . ' ORDER BY sys_category.title ASC',
        'MM_match_fields' => array(
            'tablenames' => 'tx_myext_domain_model_event',
            'field_name' => 'categories1'
        ),
    ),
));
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::makeCategorizable('myext', 'tx_myext_domain_model_event', 'categories2', array(
    'fieldConfiguration' => array(
        'foreign_table_where' => ' AND sys_category.pid = ' . 2 . ' ORDER BY sys_category.title ASC',
        'MM_match_fields' => array(
            'tablenames' => 'tx_myext_domain_model_event',
            'field_name' => 'categories2'
        ),
    ),
));

There should be 2 category fields showing categories from two different storage folders, but only 'categories2' will work.

Code example: https://gist.github.com/smichaelsen/6534198


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #52285: CategoryCollection must handle multiple category fields per tableClosedFrancois Suter2013-09-26

Actions
Actions #1

Updated by Gerrit Code Review over 10 years ago

  • Status changed from New to Under Review

Patch set 1 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #2

Updated by Gerrit Code Review over 10 years ago

Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #3

Updated by Gerrit Code Review over 10 years ago

Patch set 3 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #4

Updated by Gerrit Code Review over 10 years ago

Patch set 4 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #5

Updated by Gerrit Code Review over 10 years ago

Patch set 5 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #6

Updated by Gerrit Code Review over 10 years ago

Patch set 6 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #7

Updated by Gerrit Code Review over 10 years ago

Patch set 7 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #8

Updated by Gerrit Code Review over 10 years ago

Patch set 8 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #9

Updated by Gerrit Code Review over 10 years ago

Patch set 9 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #10

Updated by Gerrit Code Review over 10 years ago

Patch set 10 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #11

Updated by Gerrit Code Review over 10 years ago

Patch set 11 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #12

Updated by Gerrit Code Review over 10 years ago

Patch set 12 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #13

Updated by Gerrit Code Review over 10 years ago

Patch set 13 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #14

Updated by Gerrit Code Review over 10 years ago

Patch set 14 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #15

Updated by Gerrit Code Review over 10 years ago

Patch set 15 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #16

Updated by Gerrit Code Review over 10 years ago

Patch set 16 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #17

Updated by Gerrit Code Review over 10 years ago

Patch set 17 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #18

Updated by Gerrit Code Review over 10 years ago

Patch set 18 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #19

Updated by Gerrit Code Review over 10 years ago

Patch set 19 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23772

Actions #20

Updated by Anonymous over 10 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #21

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF