function install_find_profiles

7.x install.core.inc install_find_profiles()
6.x install.php 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.

File

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

Code

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