| Versionen | |
|---|---|
| drupal6 | module_iterate($function, $argument = '') |
Call a function repeatedly with each module in turn as an argument.
includes/
<?php
function module_iterate($function, $argument = '') {
foreach (module_list() as $name) {
$function($name, $argument);
}
}
?>
Kommentare
Kommentar hinzufügen