- Issue created by @kishan@lnwebworks
- 🇮🇳India kishan@lnwebworks
Add hook help by creating file with name commerce_tokens.module
<?php
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function commerce_token_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the commerce_token module.
case 'help.page.commerce_token':
$output = '';
$output .= '
' . t('About') . '
';
$output .= '' . t('This module provides new commerce tokens.') . '
';
return $output;default:
}
} - First commit to issue fork.
- Status changed to Needs review
12 months ago 8:45am 1 December 2023 - Status changed to RTBC
5 months ago 11:49am 5 July 2024 - 🇵🇭Philippines cleavinjosh
Hi @viren18febS,
I applied MR!1, it was applied cleanly and implemented the hook_help.
Please see my attached images for reference.
I am now moving this to Reviewed & tested by the community
Thank you.