Additional Records
By default the Content Planner supports the status functionality only for pages. If you want to use the status functionality for other record types, you can extend the Content Planner to support additional record types.

Categories as additional records
Follow the steps below to extend the Content Planner to support additional records, e.g. news or tt_content records:
- Extend the additional record TCA (e.g. for news records):
Configuration/TCA/Overrides/tx_news_domain_model_news.php
\Xima\XimaTypo3ContentPlanner\Utility\ExtensionUtility::addContentPlannerTabToTCA('tx_news_domain_model_news');
Copied!
- Extend the necessary database fields:
ext_tables.sql
CREATE TABLE tx_news_domain_model_news
(
tx_ximatypo3contentplanner_status int(11) DEFAULT NULL,
tx_ximatypo3contentplanner_assignee int(11) DEFAULT NULL,
tx_ximatypo3contentplanner_comments int(11) unsigned default '0' not null,
);
Copied!
- Register the additional record:
ext_localconf.php
$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['xima_typo3_content_planner']['registerAdditionalRecordTables'][] = 'tx_news_domain_model_news';
Copied!
Note
The extension also support the content status functionality for content elements as well. Just add "tt_content" as described above as additional record table.

Content elements as additional records