function theme_system_theme_select_form in Drupal 4
Same name and namespace in other branches
- 5 modules/system/system.module \theme_system_theme_select_form()
- 6 modules/system/system.admin.inc \theme_system_theme_select_form()
1 theme call to theme_system_theme_select_form()
- system_theme_select_form in modules/
system.module - Returns a fieldset containing the theme select form.
File
- modules/
system.module, line 221 - Configuration system that lets administrators modify the workings of the site.
Code
function theme_system_theme_select_form($form) {
foreach (element_children($form) as $key) {
$row = array();
if (is_array($form[$key]['description'])) {
$row[] = form_render($form[$key]['screenshot']);
$row[] = form_render($form[$key]['description']);
$row[] = form_render($form['theme'][$key]);
}
$rows[] = $row;
}
$header = array(
t('Screenshot'),
t('Name'),
t('Selected'),
);
$output = theme('table', $header, $rows);
return $output;
}