Same name and namespace in other branches
  1. 4.7.x modules/system.module \system_themes()
  2. 5.x modules/system/system.module \system_themes()

Menu callback; displays a listing of all themes.

1 string reference to 'system_themes'
system_menu in modules/system.module
Implementation of hook_menu().

File

modules/system.module, line 575
Configuration system that lets administrators modify the workings of the site.

Code

function system_themes() {
  system_listing_save();
  $form = system_theme_listing();
  $form .= form_submit(t('Save configuration'));
  print theme('page', form($form));
}