function install_find_profiles

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/install.core.inc \install_find_profiles()

Find all .profile files.

2 calls to install_find_profiles()
install_select_profile in drupal-6.x/install.php
Allow admin to select which profile to install.
install_task_list in drupal-6.x/install.php
Add the installation task list to the current page.

Archivo

drupal-6.x/install.php, line 433

Código

function install_find_profiles() {
  return file_scan_directory('./profiles', '\.profile$', array('.', '..', 'CVS'), 0, TRUE, 'name', 0);
}