Merge pull request #7399 from owncloud/themable-doc-links

introduce new theme function to allow full creation of documentation lin...
This commit is contained in:
Jan-Christoph Borchardt 2014-02-26 12:04:52 +01:00
commit 8759c35e74
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);
}
/**