You are here

visually_impaired_module.module in Visually Impaired Support (module) 8

Same filename and directory in other branches
  1. 7 visually_impaired_module.module

Visually Impaired Module.

File

visually_impaired_module.module
View source
<?php

/**
 * @file
 * Visually Impaired Module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function visually_impaired_module_help($route_name, RouteMatchInterface $route_match) {
}

/**
 * Implements hook_page_attachments().
 */
function visually_impaired_module_page_attachments(array &$attachments) {
  $attachments['#attached']['library'][] = 'visually_impaired_module/visually_impaired_module';
}