diff options
author | Anika Henke <anika@selfthinker.org> | 2010-11-07 13:15:33 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2010-11-07 13:15:33 +0000 |
commit | a21fd4b9fa168f867852150b109fcd7da2e59996 (patch) | |
tree | 51f7af7f61ba6f805cb5bdc4404bc4cdf8141b21 /tpl_functions.php | |
parent | 8fdcbb446b412f81b3336cfe9af73efe561a6633 (diff) | |
download | rpg-a21fd4b9fa168f867852150b109fcd7da2e59996.tar.gz rpg-a21fd4b9fa168f867852150b109fcd7da2e59996.tar.bz2 |
made favicon.ico more flexible (use from data/media only if it exists, otherwise from tpl)
Diffstat (limited to 'tpl_functions.php')
-rw-r--r-- | tpl_functions.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tpl_functions.php b/tpl_functions.php index 0dfee9595..d258ed38b 100644 --- a/tpl_functions.php +++ b/tpl_functions.php @@ -4,6 +4,8 @@ * * This file provides template specific custom functions that are * not provided by the DokuWiki core. + * It is common practice to start each function with an underscore + * to make sure it won't interfere with future core functions. */ // must be run from within DokuWiki @@ -64,3 +66,15 @@ function _tpl_userpage($userNS='user',$link=0,$wrapper=false) { if ($wrapper) echo "</$wrapper>"; } + +/** + * Use favicon.ico from data/media root directory if it exists, otherwise use + * the one in the template's image directory. + * + * @author Anika Henke <anika@selfthinker.org> + */ +function _tpl_getFavicon() { + if (file_exists(mediaFN('favicon.ico'))) + return ml('favicon.ico'); + return DOKU_TPL.'images/favicon.ico'; +} |