color_get_info
- Versions
- 5 – 7
color_get_info($theme)
Retrieve the color.module info for a particular theme.
Code
modules/color/color.module, line 75
<?php
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 