You are here

function yamaps_views_help in Yandex.Maps 7

Implements hook_help().

File

modules/yamaps_views/yamaps_views.module, line 40
Adds a formatter for view and create view button.

Code

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