'fieldset', '#title' => t('SWF Tools Integration Options'), '#collapsible' => TRUE, '#collapsed' => FALSE, // '#description' => '', ); $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 $form; }