When I build a new extension with Quickstarter, I customize how the backend with the file ext_tables.php, using this line:
$TCA['tt_content']['types'][$_EXTKEY . '_pi1']['showitem'] = 'CType, header,media;Images';
Where I can add new fields and even rename them. But sometimes I find weird sufixes to each field like, for example, “media;;;;1-1-1” which control other stuff that appear around the controls in the backend.
How can I know what these codes mean?
Have a look at the TCA Documentation there is a description of the types-section ($TCA[‘tt_content’][‘types’]). In there is a table, where [‘showitem’] is explained.