[dokuwiki] Re: only page name (not the whole path) -> maybe plugin???

  • From: Koen Huybrechts <huybkoen@xxxxxxxxx>
  • To: dokuwiki@xxxxxxxxxxxxx
  • Date: Wed, 05 Oct 2005 13:22:42 +0200

Koen Huybrechts wrote:

hi,

A while ago, I asked for a little bit of code to print the page title at the beginning of page (when printing). I got some code that prints the whole path of the page (so for example [[school:2:bio:2daagse:Vijverbiotoopstudie]]). Until now I it was good enough, but now, I would like to delete the [ (what do you call it in English?) and the whole path, except the last part of it. I think I can get this coded, but I have no idea where to put it, so can anyone tell me where I should put this little part of code?? (Maybe I can make a plugin of it, but how should I do that??) Would this be a good idea???

Thanks,

koko

hi,

I forgot the code (it isn't high-tech, but I think it works...)

<?php
$string = "[[school:2:bio:2daagse:Vijverbiotoopstudie]]";
$string = str_replace("[","",$string);
$string = str_replace("]","",$string);
$string = explode(":",$string);
$laatste = end($string);
echo "$laatste";
?>

Where should I put this in the wiki, or how can I make a plugin of it?? Which option would you prefer (plugin, or in code)??

koko

--
DokuWiki mailing list - more info at
http://wiki.splitbrain.org/wiki:mailinglist

Other related posts: