theme_page_test.module

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/theme_page_test/theme_page_test.module
  2. 8.9.x core/modules/system/tests/modules/theme_page_test/theme_page_test.module
  3. 10 core/modules/system/tests/modules/theme_page_test/theme_page_test.module

Test module.

File

core/modules/system/tests/modules/theme_page_test/theme_page_test.module

View source
<?php


/**
 * @file
 * Test module.
 */
use Drupal\Core\Extension\Extension;

/**
 * Implements hook_system_info_alter().
 */
function theme_page_test_system_info_alter(&$info, Extension $file, $type) {
    // Make sure that all themes are visible on the Appearance form.
    if ($type === 'theme') {
        unset($info['hidden']);
    }
}

Functions

Title Deprecated Summary
theme_page_test_system_info_alter Implements hook_system_info_alter().

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