color_get_info

5 color.module color_get_info($theme)
6 color.module color_get_info($theme)
7 color.module color_get_info($theme)
8 color.module color_get_info($theme)

Retrieves the Color module information for a particular theme.

3 calls to color_get_info()

File

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;
  }
}
Login or register to post comments