You are here

function module_builder_system_listing in Module Builder 7

Same name in this branch
  1. 7 includes/common_version_7.inc \module_builder_system_listing()
  2. 7 includes/common_version.inc \module_builder_system_listing()
Same name and namespace in other branches
  1. 6.2 includes/common_version_7.inc \module_builder_system_listing()
  2. 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.inc, line 50
common_version.inc Stuff needed both by module and drush command. Functions that need to differ for versions of Drupal. This file is the default fallback, and covers Drupal 5 and 6.

Code

function module_builder_system_listing($mask, $directory, $key = 'name', $min_depth = 1) {
  return drupal_system_listing($mask, $directory, $key, $min_depth);
}