You are here

function theme_styles_ui_admin_overview in Styles 7

Same name and namespace in other branches
  1. 6.2 contrib/styles_ui/themes/styles_ui.theme.inc \theme_styles_ui_admin_overview()
  2. 6 contrib/styles_ui/themes/styles_ui.theme.inc \theme_styles_ui_admin_overview()

Display the preset name on the admin overview page.

1 theme call to theme_styles_ui_admin_overview()
styles_ui_containers_overview in contrib/styles_ui/styles_ui.admin.inc
Page callback for various styles preset overview listing pages.

File

contrib/styles_ui/styles_ui.admin.inc, line 44
Administrative page callbacks for the Styles UI module.

Code

function theme_styles_ui_admin_overview($variables) {
  $preset_name = $variables['preset_name'];
  $output = check_plain($preset_name);
  return $output;
}