function install_reserved_tasks in Drupal 6
The list of reserved tasks to run in the installer.
1 call to install_reserved_tasks()
- install_tasks in ./
install.php - Tasks performed after the database is initialized.
File
- ./
install.php, line 895
Code
function install_reserved_tasks() {
return array(
'configure',
'profile-install',
'profile-install-batch',
'locale-initial-import',
'locale-initial-batch',
'profile-finished',
'locale-remaining-batch',
'finished',
'done',
);
}