You are here

function _openatrium_language_selected in Open Atrium 6

Check whether we are installing in a language other than English

3 calls to _openatrium_language_selected()
openatrium_profile_modules in ./openatrium.profile
Implementation of hook_profile_modules().
openatrium_profile_tasks in ./openatrium.profile
Implementation of hook_profile_tasks().
openatrium_profile_task_list in ./openatrium.profile
Implementation of hook_profile_task_list().

File

./openatrium.profile, line 225

Code

function _openatrium_language_selected() {
  global $install_locale;
  return !empty($install_locale) && $install_locale != 'en';
}