public function LanguageManager::getFallbackCandidates in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Language/LanguageManager.php \Drupal\Core\Language\LanguageManager::getFallbackCandidates()
Returns the language fallback candidates for a given context.
Parameters
array $context: (optional) An associative array of data that can be useful to determine the fallback sequence. The following keys are used in core:
- langcode: Language code of the desired language.
- operation: The name of the operation indicating the context where
language fallback is being applied. The following operations are
defined in core, but more may be defined in contributed modules:
- entity_view: Invoked when an entity is about to be displayed. The data key contains the loaded entity.
- views_query: Invoked when a field based views query is performed. The data key contains a reference to the field object.
- locale_lookup: Invoked when a string translation was not found. The data key contains the source string.
- data: A data structure that makes sense in the provided context, see above.
Return value
array An array of language codes sorted by priority: first values should be tried first.
Overrides LanguageManagerInterface::getFallbackCandidates
1 call to LanguageManager::getFallbackCandidates()
- ConfigurableLanguageManager::getFallbackCandidates in core/
modules/ language/ src/ ConfigurableLanguageManager.php - Returns the language fallback candidates for a given context.
1 method overrides LanguageManager::getFallbackCandidates()
- ConfigurableLanguageManager::getFallbackCandidates in core/
modules/ language/ src/ ConfigurableLanguageManager.php - Returns the language fallback candidates for a given context.
File
- core/
lib/ Drupal/ Core/ Language/ LanguageManager.php, line 215 - Contains \Drupal\Core\Language\LanguageManager.
Class
- LanguageManager
- Class responsible for providing language support on language-unaware sites.
Namespace
Drupal\Core\LanguageCode
public function getFallbackCandidates(array $context = array()) {
return array(
LanguageInterface::LANGCODE_DEFAULT,
);
}