Skip to content
Snippets Groups Projects
Commit a81910ee authored by Andreas Gohr's avatar Andreas Gohr
Browse files

Added tpl_include_page() function for template author's convenience

Ignore-this: ab880c4bdaf2e4e8d272f552fd88aa24

darcs-hash:20090605174949-7ad00-3f6fb728f6434c4eba1c2f8613ed53e6f3ee9764.gz
parent d5b31577
No related branches found
No related tags found
No related merge requests found
......@@ -1334,5 +1334,22 @@ function tpl_license($img='badge',$imgonly=false,$return=false){
echo $out;
}
/**
* Includes the rendered XHTML of a given page
*
* This function is useful to populate sidebars or similar features in a
* template
*/
function tpl_include_page($pageid,$print=true){
global $ID;
$oldid = $ID;
$html = p_wiki_xhtml($pageid,'',false);
$ID = $oldid;
if(!$print) return $html;
echo $html;
}
//Setup VIM: ex: et ts=4 enc=utf-8 :
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment