You are here

function tca_help in Token Content Access 8

Same name and namespace in other branches
  1. 2.0.x tca.module \tca_help()

Implements hook_help().

File

./tca.module, line 20
Contains tca.module.

Code

function tca_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the tca module.
    case 'help.page.tca':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Basic functionality that provides access control for entities based on a URL token.') . '</p>';
      return $output;
    default:
  }
}