You are here

pfm.module in Permissions filtered by modules 8

Contains pfm.module.

File

pfm.module
View source
<?php

/**
 * @file
 * Contains pfm.module.
 */
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function pfm_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the pfm module.
    case 'help.page.pfm':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Permissions filtered by modules') . '</p>';
      return $output;
    default:
  }
}

Functions

Namesort descending Description
pfm_help Implements hook_help().