Come aggiungere valore vuoto in una select nel TCA

Nella costruzione di una estensione risulta necessario, a volte, inserire una select list. 

Per poter aggiungere una valore vuoto come primo elemento di una select nel file TCA.php bisogna aggiungere queste linee di codice:

'items' => array(
array('', 0),
),

Da includere nel codice del TCA.php nel seguente modo:

'next' => array( 
'exclude' => 1,
'label' => 'LLL:EXT:yourExt/Resources/Private/Language/locallang_db.xlf:tx_your_ext.next',
'config' => array(
'type' => 'select',
'items' => array(
array('', 0),
),

'foreign_table' => 'tx_your_ext_table',
'minitems' => 0,
'maxitems' => 1,
),
),