Wie deaktiviere ich eine Option im Feld Formular auswählen?
$form['feed'] = array(
'#type' => 'select',
'#title' => t('Display of XML feed items'),
'#options' => array(
'title' => t('Titles only'),
'teaser' => t('Titles plus teaser'),
'fulltext' => t('Full text'),
),
'#description' => t('Global setting for the length of XML feed items that are output by default.'),
);
Wie kann ich beispielsweise die Option "Nur Titel" deaktivieren?