1 drupal.inc drupal_system_listing($mask, $directory, $key = 'name', $min_depth = 1)

Returns information about system object files (modules, themes, etc.).

Deprecated

since 1.0.0

See also

backdrop_system_listing()

Related topics

File

core/includes/drupal.inc, line 1181
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

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