You are here

function yamaps_example_feature_help in Yandex.Maps 7

Implements hook_help().

File

modules/yamaps_example_feature/yamaps_example_feature.module, line 13

Code

function yamaps_example_feature_help($path, $arg) {
  if ($path == 'admin/help#yamaps_example_feature') {
    return t('Check !link for tutorials and videos on how to use this module.', [
      '!link' => l(t('Yandex Maps page'), 'admin/help/yamaps'),
    ]);
  }
}