acquia_contenthub_test.module in Acquia Content Hub 8.2
Same filename and directory in other branches
Drupal Module: Acquia Content Hub - Test.
Test module only.
File
tests/modules/acquia_contenthub_test/acquia_contenthub_test.moduleView 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
Name | Description |
---|---|
acquia_contenthub_test_file_scheme_handler_alter | Implements hook_file_scheme_handler_alter(). |