You are here

acquia_contenthub_test.module in Acquia Content Hub 8.2

Same filename and directory in other branches
  1. 8 tests/modules/acquia_contenthub_test/acquia_contenthub_test.module

Drupal Module: Acquia Content Hub - Test.

Test module only.

File

tests/modules/acquia_contenthub_test/acquia_contenthub_test.module
View source
<?php

/**
 * @file
 * Drupal Module: Acquia Content Hub - Test.
 *
 * Test module only.
 */
use Drupal\Tests\acquia_contenthub\Kernel\Stubs\PublicFileSchemeHandler;

/**
 * Implements hook_file_scheme_handler_alter().
 */
function acquia_contenthub_test_file_scheme_handler_alter(array &$definitions) {
  $definitions['public']['class'] = PublicFileSchemeHandler::class;
}

Functions

Namesort descending Description
acquia_contenthub_test_file_scheme_handler_alter Implements hook_file_scheme_handler_alter().