You are here

function system_variable_theme_defaults in Variable 7.2

Same name and namespace in other branches
  1. 7 includes/system.variable.inc \system_variable_theme_defaults()

Callback for default theme settings

1 string reference to 'system_variable_theme_defaults'
system_variable_info in includes/system.variable.inc
Implements hook_variable_info().

File

includes/system.variable.inc, line 427
Variable API module. Definition for Drupal core variables

Code

function system_variable_theme_defaults($variable, $options) {
  return array(
    'default_logo' => 1,
    'logo_path' => '',
    'default_favicon' => 1,
    'favicon_path' => '',
    'favicon_mimetype' => 'image/vnd.microsoft.icon',
  );
}