Major Feature #33554
Ability to add / change the categories from the flexforms of news articles
| Status: | Rejected | Start date: | 2012-01-31 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| TYPO3 Version: | 4.6 | Has patch: | No | |
| PHP Version: | Complexity: | |||
| Votes: | 0 |
Description
To simplify the work with the news it would be nice to add the ability to add / change the categories of right of entry BE form of a news article.
History
Updated by Georg Ringer over 1 year ago
- Status changed from New to Needs Feedback
hey,
sorry I didn't really understand what you mean, can you explain it a bit better? thanks
Updated by Andrey Aksenov over 1 year ago
A typical situation. A man throws the first step to create the news, reveals that this news is a new category (a category may have not been established). He has to save the news, create an entry for the category, open news, and assign a category.
Same for the tags.
categories is select type, and would be good to add wizards edit, add and list in news/Configuration/Tca/news.php in line 236.
Updated by Georg Ringer 5 months ago
needed code is
'wizards' => array(
'_PADDING' => 1,
'_VERTICAL' => 1,
'add' => array(
'type' => 'script',
'title' => 'LLL:EXT:lang/locallang_tca.xml:file_mountpoints_add_title',
'icon' => 'add.gif',
'params' => array(
'table' => 'tx_news_domain_model_category',
'pid' => '0',
'setValue' => 'prepend'
),
'script' => 'wizard_add.php'
),
)
anyhow problem is always with the pid and it really looks ugly ... will leave it out yet
Updated by Georg Ringer 5 months ago
- Status changed from Needs Feedback to Rejected