You are here

function panopoly_core_install_locale_selection in Panopoly 7

Task handler to set the language to English since that is the only one we have at the moment.

1 string reference to 'panopoly_core_install_locale_selection'
panopoly_install_tasks_alter in ./panopoly.profile
Implements hook_install_tasks_alter()

File

modules/panopoly/panopoly_core/panopoly_core.profile.inc, line 11
panopoly_core.profile.inc

Code

function panopoly_core_install_locale_selection(&$install_state) {
  $install_state['parameters']['locale'] = 'en';
}