You are here

function commerce_kickstart_install_tasks in Commerce Kickstart 7

Same name and namespace in other branches
  1. 7.2 commerce_kickstart.install \commerce_kickstart_install_tasks()

Implements hook_install_tasks().

File

./commerce_kickstart.profile, line 19

Code

function commerce_kickstart_install_tasks() {
  $tasks = array();

  // Add a page allowing the user to indicate they'd like to install demo content.
  $tasks['commerce_kickstart_example_store_form'] = array(
    'display_name' => st('Example store'),
    'type' => 'form',
  );
  return $tasks;
}