You are here

function admincss_help in Admin CSS 8.2

Implements hook_help().

File

./admincss.module, line 14
Hook implementations for the Admin CSS module.

Code

function admincss_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.admincss':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Admin CSS module provides a way to add custom CSS to the site.') . '</p>';
      return $output;
  }
}