function module_builder_system_listing in Module Builder 7
Same name in this branch
- 7 includes/common_version_7.inc \module_builder_system_listing()
- 7 includes/common_version.inc \module_builder_system_listing()
Same name and namespace in other branches
- 6.2 includes/common_version_7.inc \module_builder_system_listing()
- 6.2 includes/common_version.inc \module_builder_system_listing()
A version-independent wrapper for drupal_system_listing().
1 call to module_builder_system_listing()
- _module_builder_invoke_hook in includes/
common.inc - Helper function to invoke hook_module_builder_info() in all modules.
File
- includes/
common_version_7.inc, line 46 - common_version_7.inc Stuff needed both by module and drush command. Functions that need to differ for versions of Drupal.
Code
function module_builder_system_listing($mask, $directory, $key = 'name', $min_depth = 1) {
$mask = "/{$mask}/";
return drupal_system_listing($mask, $directory, $key, $min_depth);
}