function LocaleLanguageNegotiationInfoFunctionalTest::languageNegotiationUpdate
Update language types/negotiation information.
Manually invoke locale_modules_enabled()/locale_modules_disabled() since they would not be invoked after enabling/disabling locale_test the first time.
1 call to LocaleLanguageNegotiationInfoFunctionalTest::languageNegotiationUpdate()
- LocaleLanguageNegotiationInfoFunctionalTest::testInfoAlterations in modules/
locale/ locale.test - Tests alterations to language types/negotiation info.
File
-
modules/
locale/ locale.test, line 3193
Class
- LocaleLanguageNegotiationInfoFunctionalTest
- Functional test for language types/negotiation info.
Code
private function languageNegotiationUpdate($op = 'enable') {
static $last_op = NULL;
$modules = array(
'locale_test',
);
// Enable/disable locale_test only if we did not already before.
if ($last_op != $op) {
$function = "module_{$op}";
$function($modules);
// Reset hook implementation cache.
module_implements(NULL, FALSE, TRUE);
}
drupal_static_reset('language_types_info');
drupal_static_reset('language_negotiation_info');
$function = "locale_modules_{$op}d";
if (function_exists($function)) {
$function($modules);
}
$this->drupalGet('admin/config/regional/language/configure');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.