blogapi.module in Blog API 8
Same filename and directory in other branches
Contains blogapi.module..
File
blogapi.moduleView source
<?php
/**
* @file
* Contains blogapi.module..
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function blogapi_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the blogapi module.
case 'help.page.blogapi':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Blog API D8') . '</p>';
return $output;
default:
}
}
Functions
Name | Description |
---|---|
blogapi_help | Implements hook_help(). |