function theme_system_themes in Drupal 5
Same name and namespace in other branches
- 4 modules/system.module \theme_system_themes()
File
- modules/
system/ system.module, line 1175 - Configuration system that lets administrators modify the workings of the site.
Code
function theme_system_themes($form) {
foreach (element_children($form) as $key) {
$row = array();
if (is_array($form[$key]['description'])) {
$row[] = drupal_render($form[$key]['screenshot']);
$row[] = drupal_render($form[$key]['description']);
$row[] = array(
'data' => drupal_render($form['status'][$key]),
'align' => 'center',
);
if ($form['theme_default']) {
$row[] = array(
'data' => drupal_render($form['theme_default'][$key]),
'align' => 'center',
);
$row[] = array(
'data' => drupal_render($form[$key]['operations']),
'align' => 'center',
);
}
}
$rows[] = $row;
}
$header = array(
t('Screenshot'),
t('Name'),
t('Enabled'),
t('Default'),
t('Operations'),
);
$output = theme('table', $header, $rows);
$output .= drupal_render($form);
return $output;
}