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

introduce new theme function to allow full creation of documentation lin...
remotes/origin/ldap_group_count
Jan-Christoph Borchardt 11 years ago
commit 8759c35e74
  1. 7
      lib/private/defaults.php
  2. 2
      lib/private/helper.php

@ -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;
}
}

@ -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);
}
/**

Loading…
Cancel
Save