Skip to content
Snippets Groups Projects
function.buildpath.php 241 B
Newer Older
  • Learn to ignore specific revisions
  • <?php
    	function smarty_function_buildpath($params, &$smarty) {
    		if ($params['item']=="") return "/";
    		foreach ($params['list'] as $crumb) {
    			if ($crumb!="") $output.="/".$crumb;
    			if ($crumb==$params['item']) return $output;
    		}
    
    	}
    ?>