7 system.module | system_get_info($type, $name = NULL) |
8 system.module | system_get_info($type, $name = NULL) |
Returns an array of information about enabled modules or themes.
This function returns the information from the {system} table corresponding to the cached contents of the .info file for each active module or theme.
Parameters
$type: Either 'module' or 'theme'.
$name: (optional) The name of a module or theme whose information shall be returned. If omitted, all records for the provided $type will be returned. If $name does not exist in the provided $type or is not enabled, an empty array will be returned.
Return value
An associative array of module or theme information keyed by name, or only information for $name, if given. If no records are available, an empty array is returned.
See also
10 calls to system_get_info()
File
- modules/
system/ system.module, line 2324 - Configuration system that lets administrators modify the workings of the site.
Code
function system_get_info($type, $name = NULL) {
$info = array();
if ($type == 'module') {
$type = 'module_enabled';
}
$list = system_list($type);
foreach ($list as $shortname => $item) {
if (!empty($item->status)) {
$info[$shortname] = $item->info;
}
}
if (isset($name)) {
return isset($info[$name]) ? $info[$name] : array();
}
return $info;
}
Login or register to post comments
Comments
Beware! If the theme is
Beware! If the theme is hidden, it will never be in the active list of themes so
$item->status
will always return false. Doesn’t mean it can’t be running since sub-themes can point to hidden base themes. In effect, this function has no access to the theme info data for hidden themes.You can access through list_themes() instead:
<?php
$themes = list_themes();
$info = $themes[$name]->info;
?>