info['styles']; if (!empty($stylesheets)) { $styles = array(); foreach ($stylesheets as $title => $file) { $styles[$file['file']] = t($file['title']); } } //set up the array for select box values $info_background_colors = $themes['osu_confident']->info['osu_confident_background_colors']; if (!empty($info_background_colors)) { foreach ($info_background_colors as $background_color) { $background_colors[$background_color] = t($background_color); } } $form['osu_confident_hide_site_name'] = array( '#title' => t('Hide site name'), '#type' => 'checkbox', '#description' => t('Prevent the site name from displaying in the header section'), '#default_value' => $settings['osu_confident_hide_site_name'], ); $form['osu_confident_color_scheme'] = array( '#title' => t('Color Scheme'), '#type' => 'select', '#description' => t("Color Scheme for OSU Confident theme"), '#default_value' => $settings['osu_confident_color_scheme'], '#options' => $styles ); $form['osu_confident_background_color'] = array( '#title' => t('Background Color'), '#type' => 'select', '#description' => t("Color for the background"), '#default_value' => $settings['osu_confident_background_color'], '#options' => $background_colors ); // Add the osu_drupal header options $form += osu_drupal_1_11_settings($settings); // Remove some of the base theme's settings. //unset($form['themedev']['zen_layout']); // We don't need to select the base stylesheet. // Return the form return $form; } ?>