| 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) |
Retrieve the color.module info for a particular theme.
3 calls to color_get_info()
File
- modules/
color/ color.module, line 122
Code
function color_get_info($theme) {
$path = drupal_get_path('theme', $theme);
$file = $path . '/color/color.inc';
if ($path && file_exists($file)) {
include $file;
return $info;
}
}
Login or register to post comments