1 simpletest.module | simpletest_get_profiles() |
Gets a list of the installation profiles that are available.
Return value
array: A list of the available installation profiles.
File
- core/
modules/ simpletest/ simpletest.module, line 479 - Provides testing functionality.
Code
function simpletest_get_profiles() {
include_once BACKDROP_ROOT . '/core/includes/install.core.inc';
return install_find_profiles();
}