function video_embed_field_help in Video Embed Field 8
Same name and namespace in other branches
- 8.2 video_embed_field.module \video_embed_field_help()
Implements hook_help().
File
- ./
video_embed_field.module, line 33 - Module file for video_embed_field.
Code
function video_embed_field_help($route_name, RouteMatchInterface $route_match) {
if ($route_name !== 'help.page.video_embed_field') {
return;
}
$links = [
':field_help' => \Drupal::moduleHandler()
->moduleExists('field_ui') ? Url::fromRoute('help.page', [
'name' => 'field_ui',
])
->toString() : '#',
':field_ui_help' => Url::fromRoute('help.page', [
'name' => 'field',
])
->toString(),
':video_embed_field_docs' => 'https://www.drupal.org/node/2322455',
':project_page' => 'http://drupal.org/project/video_embed_field',
];
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Video Embed Field module provides a simple field type you can use to embed videos and their preview thumbnails from YouTube, Vimeo and other providers. See the <a href=":field_help">Field module help</a> and the <a href=":field_ui_help">Field UI help</a> pages for general information on fields and how to create and manage them. For more Video Embed Field help, see the <a href=":video_embed_field_docs">online community documentation</a> or the <a href=":project_page">module project page</a>.', $links) . '</p>';
return $output;
}