You are here

function patterns_io_list_components in Patterns 7.2

Same name and namespace in other branches
  1. 7 includes/io/io.inc \patterns_io_list_components()

Returns a list of uris to components files.

Wrapper method for patterns_io_load_components($reset, TRUE);

Parameters

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

See also

patterns_io_load_components()

2 calls to patterns_io_list_components()
PatternsIndexesTestCase::testModuletags in tests/indexes/indexes.test
patterns_info_components in includes/forms/info.inc
Displays a summary of available Patterns components

File

includes/io/io.inc, line 605
Functions related to input/output operations.

Code

function patterns_io_list_components($reset = FALSE) {
  return patterns_io_load_components($reset, TRUE);
}