function color_get_info

7.x color.module color_get_info($theme)
6.x color.module color_get_info($theme)

Retrieves the Color module information for a particular theme.

3 calls to color_get_info()
color_form_system_theme_settings_alter in drupal-7.x/modules/color/color.module
Implements hook_form_FORM_ID_alter().
color_get_palette in drupal-7.x/modules/color/color.module
Retrieves the color palette for a particular theme.
color_scheme_form in drupal-7.x/modules/color/color.module
Form constructor for the color configuration form for a particular theme.

File

drupal-7.x/modules/color/color.module, line 133
Allows users to change the color scheme of themes.

Code

function color_get_info($theme) {
  static $theme_info = array();

  if (isset($theme_info[$theme])) {
    return $theme_info[$theme];
  }

  $path = drupal_get_path('theme', $theme);
  $file = DRUPAL_ROOT . '/' . $path . '/color/color.inc';
  if ($path && file_exists($file)) {
    include $file;
    $theme_info[$theme] = $info;
    return $info;
  }
}