You are here

function patterns_export_list_export_functions in Patterns 7

Same name and namespace in other branches
  1. 7.2 patterns_export/patterns_export.module \patterns_export_list_export_functions()

Returns a list with the names of the components.

Parameters

bool $reset (optional) If TRUE, always forces reloading: the components from the file system. Defaults FALSE

Return value

array Array containing the names of the patterns components

See also

patterns_io_load_components()

File

patterns_export/patterns_export.module, line 285

Code

function patterns_export_list_export_functions($reset = TRUE) {
  $moduletags = patterns_moduletags_get_index(NULL, $reset, $reset);
  return patterns_moduletags_filter($moduletags, NULL, PATTERNS_EXPORT);
}