You are here

function express_install_tasks in Express 7.2

Implements hook_install_tasks().

File

./express.profile, line 38
Configure Express.

Code

function express_install_tasks() {

  // @TODO: This looks nothing like http://cgit.drupalcode.org/drupal/tree/includes/install.core.inc?h=7.x#n525
  // should it?
  $tasks = array();
  $tasks['express_profile_configure_form'] = array(
    'display_name' => st('Configure Express profile'),
    'type' => 'form',
  );
  $tasks['express_final'] = array();
  return $tasks;
}