projectdocumentation-1.0.x-dev/projectdocumentation.module
projectdocumentation.module
<?php
/**
* @file
* Hooks for Project Documentation module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function projectdocumentation_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.projectdocumentation':
$output = '<p>' . t('Provides a content type to record metadata (what, when, why and who) about projects used on the site.') . '</p>';
return $output;
default:
}
}
