You are here

function panopoly_theme_profile_theme_selection_install_task in Panopoly Theme 7

Same name and namespace in other branches
  1. 8.2 panopoly_theme.profile.inc \panopoly_theme_profile_theme_selection_install_task()

Add an install task to allow selection of the theme

File

./panopoly_theme.profile.inc, line 10
panopoly_theme.profile.inc

Code

function panopoly_theme_profile_theme_selection_install_task(&$install_task) {
  $tasks['panopoly_theme_selection_form'] = array(
    'display_name' => t('Choose a theme'),
    'type' => 'form',
  );
  return $tasks;
}