| Versionen | |
|---|---|
| drupal6 – drupal7 | color_get_info($theme) |
Retrieve the color.module info for a particular theme.
modules/
<?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;
}
}
?>
Kommentare
Kommentar hinzufügen