t('Prompt Chrome Frame installation'), '#description' => t('Should Chrome Frame prompt installation on IE users?'), '#type' => 'radios', '#options' => array( 0 => t('Don\'t Prompt'), 1 => t('IE 6 only'), 2 => t('Prompt for all versions of IE') ), '#default_value' => variable_get('chrome_frame_prompt', 0), ); $form['chrome_frame_mode'] = array( '#title' => t('Mode'), '#type' => 'select', '#options' => array( 'inline' => t('Inline'), 'popup' => t('Popup'), ), '#description' => t('How the user should be prompted when Google Chrome Frame is missing. Using a Popup will result in creating a new window for the prompt.'), '#default_value' => variable_get('chrome_frame_mode', 'inline'), ); return system_settings_form($form); }