You are here

public function AdvancedHelpManager::getTopicFileName in Advanced Help 8

File

src/AdvancedHelpManager.php, line 258

Class

AdvancedHelpManager
AdvancedHelp plugin manager.

Namespace

Drupal\advanced_help

Code

public function getTopicFileName($module, $topic) {
  $info = $this
    ->getTopicFileInfo($module, $topic);
  if ($info) {
    return "./{$info['path']}/{$info['file']}";
  }
}