class LocaleTestExtraHooks

Same name and namespace in other branches
  1. main core/modules/locale/tests/modules/locale_test_extra/src/Hook/LocaleTestExtraHooks.php \Drupal\locale_test_extra\Hook\LocaleTestExtraHooks

Hook implementations for locale_test_extra.

Hierarchy

Expanded class hierarchy of LocaleTestExtraHooks

File

core/modules/locale/tests/modules/locale_test_extra/src/Hook/LocaleTestExtraHooks.php, line 13

Namespace

Drupal\locale_test_extra\Hook
View source
class LocaleTestExtraHooks {
  
  /**
   * Implements hook_system_info_alter().
   *
   * By default this modules is hidden but once enabled it behaves like a normal
   * (not hidden) module. This hook implementation changes the .info.yml data by
   * setting the hidden status to FALSE.
   */
  public function systemInfoAlter(&$info, Extension $file, $type) : void {
    if ($file->getName() == 'locale_test_extra') {
      // Don't hide the module.
      $info['hidden'] = FALSE;
    }
  }

}

Members

Title Sort descending Modifiers Object type Summary
LocaleTestExtraHooks::systemInfoAlter public function Implements hook_system_info_alter().

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