function panopoly_theme_profile_theme_selection_install_task in Panopoly 7
Same name and namespace in other branches
- 8.2 modules/panopoly/panopoly_theme/panopoly_theme.profile.inc \panopoly_theme_profile_theme_selection_install_task()
Add an install task to allow selection of the theme
1 call to panopoly_theme_profile_theme_selection_install_task()
- panopoly_install_tasks in ./
panopoly.profile - Implements hook_install_tasks()
File
- modules/
panopoly/ panopoly_theme/ 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;
}