You are here

function drush_patterns_paths in Patterns 7

Same name and namespace in other branches
  1. 7.2 patterns.drush.inc \drush_patterns_paths()

List of patterns path command callback.

File

./patterns.drush.inc, line 295
Drush Patterns module commands

Code

function drush_patterns_paths() {
  drush_print("List of path containing Patterns files.");
  $paths = patterns_path_get_patterns_dirs();
  foreach ($paths as $path) {
    drush_print("- {$path}", 4);
  }
  drush_print_pipe(implode(', ', $paths));
}