I'm currently working on a project that uses the t3blog extension. In the backend, when creating a new post, you first enter a title and then you have to click on "create new" to add content to the post.
Ideally the client wants to remove the "create new" or at least have it create a new piece of content by default.
I'm digging through the TCA of the extension and I found where it adds that control, now I'm a bit stuck as I haven't hacked in TCA before, does anyone know how to modify the behavior of an "inline" type via TCA?
Here is the code that adds the control.
'content' => Array (
'exclude' => 1,
'label' => 'LLL:EXT:t3blog/locallang_db.xml:tx_t3blog_post.content',
'config' => array (
'type' => 'inline',
'foreign_table' => 'tt_content',
'foreign_field' => 'irre_parentid',
'foreign_table_field' => 'irre_parenttable',
'maxitems' => 100,
'appearance' => array(
'showSynchronizationLink' => 0,
'showAllLocalizationLink' => 0,
'showPossibleLocalizationRecords' => 0,
'showRemovedLocalizationRecords' => 0,
'expandSingle' => 1
),
'behaviour' => array(
),
)
),
What I'm trying to do is to remove the "general" tab that is created and just have the "text" tab.
Any hints would be very much appreciated.
Just managed to fix this yesterday after a long session of head scratching, here is how:
Modified the TCA to this:
Then I created a new empty extension. Inside the ext directory, created ext_tables.php with the following content:
And inside ux_inline.php:
Hope this will help someone else in the future.