'fieldset', '#title' => t('SWF Tools integration options'), '#collapsible' => TRUE, '#collapsed' => FALSE, ); $file_types = array( 'img' => 'Images', 'mp3' => 'Audio (MP3)', 'flv' => 'Flash video (FLV)', 'swf' => 'SWF files (SWF)', ); $form['swftools_integrate']['swftools_integrate_render_upload'] = array( '#type' => 'select', '#default_value' => variable_get('swfintegrate_render_upload', array()), '#title' => t('Render attachments'), '#description' => t('Automatically show attachments in a media player, attachments are files attached to a node using Upload module.'), '#options' => $file_types, '#multiple' => TRUE, ); return system_settings_form($form); }