language.api.php

Same filename in this branch
  1. 11.x core/lib/Drupal/Core/Language/language.api.php
Same filename and directory in other branches
  1. 7.x modules/system/language.api.php
  2. 9 core/modules/language/language.api.php
  3. 9 core/lib/Drupal/Core/Language/language.api.php
  4. 8.9.x core/modules/language/language.api.php
  5. 8.9.x core/lib/Drupal/Core/Language/language.api.php
  6. 10 core/modules/language/language.api.php
  7. 10 core/lib/Drupal/Core/Language/language.api.php

Hooks provided by the Language module.

File

core/modules/language/language.api.php

View source
<?php


/**
 * @file
 * Hooks provided by the Language module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Define language types.
 *
 * @return array
 *   An associative array of language type definitions. The keys are the
 *   identifiers, which are also used as names for global variables representing
 *   the types in the bootstrap phase. The values are associative arrays that
 *   may contain the following elements:
 *   - name: The human-readable language type identifier.
 *   - description: A description of the language type.
 *   - locked: A boolean indicating if the user can choose whether to configure
 *     the language type or not using the UI.
 *   - fixed: A fixed array of language negotiation method identifiers to use to
 *     initialize this language. If locked is set to TRUE and fixed is set, it
 *     will always use the specified methods in the given priority order. If not
 *     present and locked is TRUE then language-interface will be
 *     used.
 *
 *  @todo Rename the 'fixed' key to something more meaningful, for instance
 *     'negotiation settings'. See https://www.drupal.org/node/2166879.
 *
 * @see hook_language_types_info_alter()
 * @ingroup language_negotiation
 */
function hook_language_types_info() {
    return [
        'custom_language_type' => [
            'name' => t('Custom language'),
            'description' => t('A custom language type.'),
            'locked' => FALSE,
        ],
        'fixed_custom_language_type' => [
            'locked' => TRUE,
            'fixed' => [
                'custom_language_negotiation_method',
            ],
        ],
    ];
}

/**
 * Perform alterations on language types.
 *
 * @param array $language_types
 *   Array of language type definitions.
 *
 * @see hook_language_types_info()
 * @ingroup language_negotiation
 */
function hook_language_types_info_alter(array &$language_types) {
    if (isset($language_types['custom_language_type'])) {
        $language_types['custom_language_type_custom']['description'] = t('A far better description.');
    }
}

/**
 * Perform alterations on language negotiation methods.
 *
 * @param array $negotiation_info
 *   Array of language negotiation method definitions.
 *
 * @ingroup language_negotiation
 */
function hook_language_negotiation_info_alter(array &$negotiation_info) {
    if (isset($negotiation_info['custom_language_method'])) {
        $negotiation_info['custom_language_method']['config'] = 'admin/config/regional/language/detection/custom-language-method';
    }
}

/**
 * Allow modules to alter the language fallback candidates.
 *
 * @param array $candidates
 *   An array of language codes whose order will determine the language fallback
 *   order.
 * @param array $context
 *   A language fallback context.
 *
 * @see \Drupal\Core\Language\LanguageManagerInterface::getFallbackCandidates()
 */
function hook_language_fallback_candidates_alter(array &$candidates, array $context) {
    $candidates = array_reverse($candidates);
}

/**
 * Allow modules to alter the fallback candidates for specific operations.
 *
 * @param array $candidates
 *   An array of language codes whose order will determine the language fallback
 *   order.
 * @param array $context
 *   A language fallback context.
 *
 * @see \Drupal\Core\Language\LanguageManagerInterface::getFallbackCandidates()
 */
function hook_language_fallback_candidates_OPERATION_alter(array &$candidates, array $context) {
    // We know that the current OPERATION deals with entities so no need to check
    // here.
    if ($context['data']->getEntityTypeId() == 'node') {
        $candidates = array_reverse($candidates);
    }
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Title Deprecated Summary
hook_language_fallback_candidates_alter Allow modules to alter the language fallback candidates.
hook_language_fallback_candidates_OPERATION_alter Allow modules to alter the fallback candidates for specific operations.
hook_language_negotiation_info_alter Perform alterations on language negotiation methods.
hook_language_types_info Define language types.
hook_language_types_info_alter Perform alterations on language types.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.