You are here

function drupal_commons_profile_task_list in Drupal Commons 6

Same name and namespace in other branches
  1. 6.2 drupal_commons.profile \drupal_commons_profile_task_list()

Return a list of tasks that this profile supports.

Return value

A keyed array of tasks the profile will perform during the final stage. The keys of the array will be used internally, while the values will be displayed to the user in the installer task list.

File

./drupal_commons.profile, line 80

Code

function drupal_commons_profile_task_list() {
  $tasks = array();
  $tasks['configure-features'] = st('Select features');
  $tasks['configure-theme'] = st('Select theme');
  $tasks['install-commons'] = st('Install Commons');
  return $tasks;
}