module_iterate
- Versions
- 4.6 – 6
module_iterate($function, $argument = '')
Call a function repeatedly with each module in turn as an argument.
Code
includes/module.inc, line 20
<?php
function module_iterate($function, $argument = '') {
foreach (module_list() as $name) {
$function($name, $argument);
}
}
?>Login or register to post comments 