introduce new theme function to allow full creation of documentation links: buildDocLinkToKey()

This commit is contained in:
Thomas Müller 2014-02-25 23:06:23 +01:00
parent 7f7d674c2a
commit 574883c47a
2 changed files with 8 additions and 1 deletions

View File

@ -174,4 +174,11 @@ class OC_Defaults {
return $footer;
}
public function buildDocLinkToKey($key) {
if ($this->themeExist('buildDocLinkToKey')) {
return $this->theme->buildDocLinkToKey($key);
}
return $this->getDocBaseUrl() . '/server/6.0/go.php?to=' . $key;
}
}

View File

@ -64,7 +64,7 @@ class OC_Helper {
*/
public static function linkToDocs($key) {
$theme = new OC_Defaults();
return $theme->getDocBaseUrl() . '/server/6.0/go.php?to=' . $key;
return $theme->buildDocLinkToKey($key);
}
/**