Skip to content
Snippets Groups Projects

Issue #3438047: help hook

1 file
+ 11
0
Compare changes
  • Side-by-side
  • Inline
<?php
use \Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help() for the Entity Embed Placeholder.
*/
function entity_embed_placeholder_help($route_name, RouteMatchInterface $route_match) {
// This is an empty implementation of hook_help().
$output = '';
$output .= '<p>' . t('This is Entity Embed Placeholder module') . '</p>';
return $output;
}
/**
* @file
Loading