diff options
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index cf5335600..bc2aba4f9 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2160,28 +2160,6 @@ function theme_system_modules_uninstall($form) { } /** - * Theme the theme select form. - * @param $form - * An associative array containing the structure of the form. - * @ingroup themeable - */ -function theme_system_theme_select_form($form) { - foreach (element_children($form) as $key) { - $row = array(); - if (isset($form[$key]['description']) && is_array($form[$key]['description'])) { - $row[] = drupal_render($form[$key]['screenshot']); - $row[] = drupal_render($form[$key]['description']); - $row[] = drupal_render($form['theme'][$key]); - } - $rows[] = $row; - } - - $header = array(t('Screenshot'), t('Name'), t('Selected')); - $output = theme('table', $header, $rows); - return $output; -} - -/** * Theme function for the system themes form. * * @param $form |