random_quotes_block-1.0.x-dev/random_quotes_block.module
random_quotes_block.module
<?php
/**
* @file
* Contains random_quotes_block.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function random_quotes_block_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the random_quotes_block module.
case 'help.page.random_quotes_block':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Use for show random quotes') . '</p>';
return $output;
default:
}
}