module_exists($module)
drupal-5/includes/module.inc, line 214
Determine whether a given module exists.
$module The name of the module (without the .module extension).
TRUE if the module is both installed and enabled.
<?php
function module_exists($module) {
$list = module_list();
return array_key_exists($module, $list);
}
?>